示例#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));
示例#2
0
文件: Double.cs 项目: zhk0603/runtime
 static TInteger IFloatingPoint <double> .ILogB <TInteger>(double x)
 => TInteger.Create(Math.ILogB(x));
示例#3
0
 /// <inheritdoc cref="IFloatingPointIeee754{TSelf}.ILogB(TSelf)" />
 public static int ILogB(double x) => Math.ILogB(x);