Bound.opAssign

Assign from Bound value rhs.

  1. auto opAssign(U rhs)
  2. auto opAssign(Bound!(U, low_, high_, optional, useExceptions, packed, signed) rhs)
    struct Bound(V, alias low, alias high, bool optional = false, bool useExceptions = true, bool packed = true, bool signed = false)
    opAssign
    (
    U
    alias low_
    alias high_
    )
    (
    Bound!(U, low_, high_, optional, useExceptions, packed, signed) rhs
    )
    if (
    low <= low_ &&
    high_ <= high
    &&
    )

Meta