operator >= method

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

Whether other is numerically smaller than this big integer.

Implementation

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