8 references to CompareTo
System.Runtime.Numerics (8)
System\Numerics\BigInteger.cs (8)
3089public static bool operator <(BigInteger left, long right) => left.CompareTo(right) < 0; 3091public static bool operator <=(BigInteger left, long right) => left.CompareTo(right) <= 0; 3093public static bool operator >(BigInteger left, long right) => left.CompareTo(right) > 0; 3095public static bool operator >=(BigInteger left, long right) => left.CompareTo(right) >= 0; 3101public static bool operator <(long left, BigInteger right) => right.CompareTo(left) > 0; 3103public static bool operator <=(long left, BigInteger right) => right.CompareTo(left) >= 0; 3105public static bool operator >(long left, BigInteger right) => right.CompareTo(left) < 0; 3107public static bool operator >=(long left, BigInteger right) => right.CompareTo(left) <= 0;