4 references to ConvertToDouble
System.Runtime.Numerics (4)
System\Numerics\BigInteger.cs (4)
2034
public static explicit operator double(BigInteger value) =>
ConvertToDouble
(value, roundToOdd: false);
2151
public static explicit operator Half(BigInteger value) => (Half)
ConvertToDouble
(value, roundToOdd: true);
2156
public static explicit operator BFloat16(BigInteger value) => (BFloat16)
ConvertToDouble
(value, roundToOdd: true);
2281
public static explicit operator float(BigInteger value) => (float)
ConvertToDouble
(value, roundToOdd: true);