FloatingPointValue.uninitialized constructor

  1. @protected
FloatingPointValue.uninitialized({
  1. bool explicitJBit = false,
  2. bool subNormalAsZero = false,
})

Creates an unpopulated version of a FloatingPointValue, intended to be called with the populator.

Implementation

@protected
FloatingPointValue.uninitialized(
    {bool explicitJBit = false, bool subNormalAsZero = false})
    : _explicitJBit = explicitJBit,
      _subNormalAsZero = subNormalAsZero;