Ejemplo n.º 1
0
 /// <inheritdoc cref="IFloatingPoint{TSelf}.ScaleB{TInteger}(TSelf, TInteger)" />
 public static double ScaleB <TInteger>(double x, TInteger n)
     where TInteger : IBinaryInteger <TInteger> => Math.ScaleB(x, int.Create(n));
Ejemplo n.º 2
0
 static double IFloatingPoint <double> .ScaleB <TInteger>(double x, TInteger n)
 => Math.ScaleB(x, int.Create(n));
Ejemplo n.º 3
0
 /// <inheritdoc cref="IFloatingPointIeee754{TSelf}.ScaleB(TSelf, int)" />
 public static double ScaleB(double x, int n) => Math.ScaleB(x, n);