FloatingPoint32Value.ofInts constructor

FloatingPoint32Value.ofInts(
  1. int exponent,
  2. int mantissa, {
  3. bool sign = false,
})

FloatingPoint32Value constructor from a set of ints of the binary representation

Implementation

FloatingPoint32Value.ofInts(super.exponent, super.mantissa, {super.sign})
    : super.ofInts(
          exponentWidth: exponentWidth, mantissaWidth: mantissaWidth);