FloatingPoint16Value constructor

FloatingPoint16Value({
  1. required LogicValue sign,
  2. required LogicValue exponent,
  3. required LogicValue mantissa,
})

Constructor for a single precision floating point value

Implementation

FloatingPoint16Value(
    {required super.sign, required super.exponent, required super.mantissa});