Compare() static private method

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