8 references to CompareTo
System.Runtime.Numerics (8)
System\Numerics\BigInteger.cs (8)
3006public static bool operator <(BigInteger left, long right) => left.CompareTo(right) < 0; 3008public static bool operator <=(BigInteger left, long right) => left.CompareTo(right) <= 0; 3010public static bool operator >(BigInteger left, long right) => left.CompareTo(right) > 0; 3012public static bool operator >=(BigInteger left, long right) => left.CompareTo(right) >= 0; 3018public static bool operator <(long left, BigInteger right) => right.CompareTo(left) > 0; 3020public static bool operator <=(long left, BigInteger right) => right.CompareTo(left) >= 0; 3022public static bool operator >(long left, BigInteger right) => right.CompareTo(left) < 0; 3024public static bool operator >=(long left, BigInteger right) => right.CompareTo(left) <= 0;