BigInt.opAssign

Assignment from built-in integer types.

  1. BigInt opAssign(T x)
    struct BigInt
    pure nothrow @safe
    opAssign
    (
    T
    )
    (
    T x
    )
  2. BigInt opAssign(T x)

Examples

auto b = BigInt("123");
b = 456;
assert(b == BigInt("456"));

Meta