8 references to CompareTo
System.Runtime.Numerics (8)
System\Numerics\BigInteger.cs (8)
3198public static bool operator <(BigInteger left, long right) => left.CompareTo(right) < 0; 3200public static bool operator <=(BigInteger left, long right) => left.CompareTo(right) <= 0; 3202public static bool operator >(BigInteger left, long right) => left.CompareTo(right) > 0; 3204public static bool operator >=(BigInteger left, long right) => left.CompareTo(right) >= 0; 3210public static bool operator <(long left, BigInteger right) => right.CompareTo(left) > 0; 3212public static bool operator <=(long left, BigInteger right) => right.CompareTo(left) >= 0; 3214public static bool operator >(long left, BigInteger right) => right.CompareTo(left) < 0; 3216public static bool operator >=(long left, BigInteger right) => right.CompareTo(left) <= 0;