8 references to CompareTo
System.Runtime.Numerics (8)
System\Numerics\BigInteger.cs (8)
3797public static bool operator <(BigInteger left, long right) => left.CompareTo(right) < 0; 3799public static bool operator <=(BigInteger left, long right) => left.CompareTo(right) <= 0; 3801public static bool operator >(BigInteger left, long right) => left.CompareTo(right) > 0; 3803public static bool operator >=(BigInteger left, long right) => left.CompareTo(right) >= 0; 3809public static bool operator <(long left, BigInteger right) => right.CompareTo(left) > 0; 3811public static bool operator <=(long left, BigInteger right) => right.CompareTo(left) >= 0; 3813public static bool operator >(long left, BigInteger right) => right.CompareTo(left) < 0; 3815public static bool operator >=(long left, BigInteger right) => right.CompareTo(left) <= 0;