FloatingPoint64 constructor

FloatingPoint64({
  1. String? name,
})

Construct a 64-bit (double-precision) floating point number.

Implementation

FloatingPoint64({super.name})
    : super(
          exponentWidth: FloatingPoint64Value.populator().exponentWidth,
          mantissaWidth: FloatingPoint64Value.populator().mantissaWidth);