FloatingPoint16 constructor

FloatingPoint16({
  1. String? name,
})

Construct a 16-bit floating point number.

Implementation

FloatingPoint16({super.name})
    : super(
          mantissaWidth: FloatingPoint16Value.populator().mantissaWidth,
          exponentWidth: FloatingPoint16Value.populator().exponentWidth);