FloatingPoint64Value constructor

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

Constructor for a double precision floating point value

Implementation

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