ofFixedPoint method

FxvType ofFixedPoint(
  1. FixedPoint fp
)

Extracts a FixedPointValue from a FixedPoint's current value.

Implementation

FxvType ofFixedPoint(FixedPoint fp) => populate(
      integer: fp.integer.value,
      fraction: fp.fraction.value,
    );