BigFixed.opAssign

Assignment from another BigFixed

  1. BigFixed opAssign(T x)
  2. BigFixed opAssign(T x)
    struct BigFixed
    pure @nogc
    opAssign
    ()
    (
    T x
    )

Examples

immutable b1 = BigFixed(123, 5);
auto b2 = BigFixed(456, 10);
b2 = b1;
assert(b2 == BigFixed(123, 5));

Meta