BigFixed.opAssign

Assignment from built-in integer types

  1. BigFixed opAssign(T x)
    struct BigFixed
    pure nothrow
    opAssign
    (
    T
    )
    (
    T x
    )
    if (
    isIntegral!T
    )
  2. BigFixed opAssign(T x)

Examples

auto b = BigFixed(5, 10);
b = 2;
assert(b == BigFixed(2, 10));

Meta