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