operator > method

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

Whether this big integer is numerically greater than other.

Implementation

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