BigInt.opOpAssign

BigInt opOpAssign(string op, T)(T y) if ((op == "+" || op == "-" || op == "*" || op == "/" || op == "%" || op == ">>" || op == "<<" || op == "^^" || op == "|" || op == "&" || op == "^") && isIntegral!T) pure nothrow @safe return scope

Implements assignment operators from built-in integers of the form BigInt op= integer.

BigInt opOpAssign(string op, T)(T y) if ((op == "+" || op == "-" || op == "*" || op == "|" || op == "&" || op == "^" || op == "/" || op == "%") && is (T: BigInt)) pure nothrow @safe return scope

Implements assignment operators of the form BigInt op= BigInt.