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)
  6. uint opOpAssign(uint rhs, uint overflow)
  7. UInt!size opOpAssign(UInt!size rhs, UInt!size overflow)
    struct BigUIntView(W)
    @safe @safe pure nothrow @nogc scope
    static if(isMutable!W && W.sizeof == size_t.sizeof)
    UInt!size
    opOpAssign
    (
    string op : "*"
    size_t size
    )
    (
    UInt!size rhs
    ,
    UInt!size overflow = 0
    )
    if (
    __traits(isUnsigned, W)
    )

Parameters

rhs UInt!size

unsigned fixed-length integer to multiply by

overflow UInt!size

initial overflow

Return Value

Type: UInt!size

unsigned fixed-length integer overflow value

Meta