valuePopulator method

  1. @mustBeOverridden
FloatingPointValuePopulator<FloatingPointValue> valuePopulator()

A FloatingPointValuePopulator for values associated with this FloatingPoint type.

Implementation

@mustBeOverridden
FloatingPointValuePopulator valuePopulator() => FloatingPointValue.populator(
    exponentWidth: exponent.width,
    mantissaWidth: mantissa.width,
    explicitJBit: explicitJBit,
    subNormalAsZero: subNormalAsZero);