Compare() static private method

static private Compare ( BigInteger x, double y ) : int
x Microsoft.Scripting.Math.BigInteger
y double
return int
Esempio n. 1
0
 public static int Compare(BigInteger x, [NotNull] Extensible <double> y)
 {
     return(-((int)DoubleOps.Compare(y.Value, x)));
 }
Esempio n. 2
0
 public static int Compare(BigInteger x, double y)
 {
     return(-((int)DoubleOps.Compare(y, x)));
 }