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