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