ofFloatingPoint method
Extracts a FloatingPointValue from a FloatingPoint's current value
.
Implementation
FpvType ofFloatingPoint(FloatingPoint fp) => populate(
sign: fp.sign.value,
exponent: fp.exponent.value,
mantissa: fp.mantissa.value,
);