operator + method

Obj<BigInt> operator +(
  1. Obj<BigInt> other
)

Adds other to this big integer.

The result is again a big integer.

Implementation

Obj<BigInt> operator +(Obj<BigInt> other) => Obj(value + other.value);