8 references to CompareTo
System.Runtime.Numerics (8)
System\Numerics\BigInteger.cs (8)
3797
public static bool operator <(BigInteger left, long right) => left.
CompareTo
(right) < 0;
3799
public static bool operator <=(BigInteger left, long right) => left.
CompareTo
(right) <= 0;
3801
public static bool operator >(BigInteger left, long right) => left.
CompareTo
(right) > 0;
3803
public static bool operator >=(BigInteger left, long right) => left.
CompareTo
(right) >= 0;
3809
public static bool operator <(long left, BigInteger right) => right.
CompareTo
(left) > 0;
3811
public static bool operator <=(long left, BigInteger right) => right.
CompareTo
(left) >= 0;
3813
public static bool operator >(long left, BigInteger right) => right.
CompareTo
(left) < 0;
3815
public static bool operator >=(long left, BigInteger right) => right.
CompareTo
(left) <= 0;