Int128.opOpAssign

arithmetic assignment operators += -= *= /= %= &= |= ^= <<= >>= >>>=

  1. Int128 opOpAssign(Int128 op2)
    struct Int128
    ref
    opOpAssign
    (
    string op
    )
    if (
    op == "+" ||
    op == "-"
    ||
    op == "*"
    ||
    op == "/"
    ||
    op == "%"
    ||
    op == "&"
    ||
    op == "|"
    ||
    op == "^"
    ||
    op == "<<"
    ||
    op == ">>"
    ||
    op == ">>>"
    )
  2. Int128 opOpAssign(Int op2)

Parameters

op2 Int128

second operand

Return Value

Type: Int128

lvalue of updated left operand

Meta