operator * method

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

Multiplies other by this big integer.

The result is again a big integer.

Implementation

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