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