operator < method

bool operator <(
  1. BigInteger other
)

Comparison operators

Implementation

bool operator <(BigInteger other) => _value < other._value;