ref: 3ec885ae37703028d40d8308bfe1a017307a5e4e
dir: /libstd/floatbits.myr/
pkg std =
const float64bits : (flt : float64 -> uint64)
const float32bits : (flt : float32 -> uint32)
const float64frombits : (bits : uint64 -> float64)
const float32frombits : (bits : uint32 -> float32)
;;
const float64bits = {flt; -> (&flt castto(uint64#))#}
const float32bits = {flt; -> (&flt castto(uint32#))#}
const float64frombits = {bits; -> (&bits castto(float64#))#}
const float32frombits = {bits; -> (&bits castto(float32#))#}