ofBinaryStrings method
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));