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