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