compareTo method

  1. @override
int compareTo(
  1. BigInteger other
)
override

Compares this BigInteger with another.

Implementation

@override
int compareTo(BigInteger other) => _value.compareTo(other._value);