ofFloatingPoint method

FpvType ofFloatingPoint(
  1. FloatingPoint fp
)

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,
    );