コード例 #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);