BigInt.opAssign

Assignment from another BigInt.

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

Examples

auto b1 = BigInt("123");
auto b2 = BigInt("456");
b2 = b1;
assert(b2 == BigInt("123"));

Meta