FloatingPoint32 constructor

FloatingPoint32({
  1. String? name,
})

Construct a 32-bit (single-precision) floating point number.

Implementation

FloatingPoint32({super.name})
    : super(
          exponentWidth: FloatingPoint32Value.populator().exponentWidth,
          mantissaWidth: FloatingPoint32Value.populator().mantissaWidth);