Float64bits returns the IEEE 754 binary representation of f, with the sign bit of f and the result in the same bit position, and Float64bits(Float64frombits(x)) == x.
(f float64)
| 88 | // with the sign bit of f and the result in the same bit position, |
| 89 | // and Float64bits(Float64frombits(x)) == x. |
| 90 | func Float64bits(f float64) uint64 { return *(*uint64)(unsafe.Pointer(&f)) } |
| 91 | |
| 92 | // Float64frombits returns the floating-point number corresponding |
| 93 | // to the IEEE 754 binary representation b, with the sign bit of b |