operator <= method

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

Whether other is numerically greater than this big integer.

Implementation

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