operator - method

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

Subtracts other from this big integer.

The result is again a big integer.

Implementation

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