BigInt.opOpAssign

BigInt opOpAssign(string op)(auto ref const BigInt rhs) ref pure @safe
No documentation available for this declaration.
BigInt opOpAssign(string op, T)(T exp) if (op == "^^" && isIntegral!T) ref pure @safe

Power assignment operator for BigInt ^^= integral exponent.

Parameters

expThe exponent (must be non-negative integral type)

Returns

Reference to this after raising to the power exp
BigInt opOpAssign(string op, T)(T rhs) if (isIntegral!T && op != "^^") ref pure @safe
No documentation available for this declaration.
BigInt opOpAssign(string op)(size_t shift) if (op == "<<" || op == ">>") ref pure @safe
No documentation available for this declaration.