ofBinaryStrings method

FpvType ofBinaryStrings(
  1. String sign,
  2. String exponent,
  3. String mantissa
)

FloatingPointValue constructor from a binary string representation of individual bitfields

Implementation

FpvType ofBinaryStrings(String sign, String exponent, String mantissa) =>
    populate(
        sign: LogicValue.of(sign),
        exponent: LogicValue.of(exponent),
        mantissa: LogicValue.of(mantissa));