The OpenD Programming Language

BigUIntView.opOpAssign

Performs W overflow = (big += overflow) *= scalar operatrion. Precondition: non-empty coefficients

  1. bool opOpAssign(BigUIntView!(const W) rhs, bool overflow)
  2. bool opOpAssign(BigIntView!(const W) rhs, bool overflow)
  3. bool opOpAssign(T rhs)
  4. bool opOpAssign(T rhs)
  5. W opOpAssign(W rhs, W overflow)
    struct BigUIntView(W)
    @safe @safe pure nothrow @nogc scope
    static if(isMutable!W && W.sizeof >= 4)
    W
    opOpAssign
    (
    string op : "*"
    )
    (
    W rhs
    ,
    W overflow = 0u
    )
    if (
    __traits(isUnsigned, W)
    )
  6. uint opOpAssign(uint rhs, uint overflow)
  7. UInt!size opOpAssign(UInt!size rhs, UInt!size overflow)

Parameters

rhs W

unsigned value to multiply by

overflow W

initial overflow

Return Value

Type: W

unsigned overflow value

Meta