예제 #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);