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) => (value + other.value).obj;