BigInt.opAssign

BigInt opAssign(T)(T x) if (isIntegral!T) ref pure nothrow @safe

Assignment operator from integral types.

Allows direct assignment from any integral type: BigInt b; b = 42;

Parameters

xThe integral value to assign

Returns

Reference to this after assignment