FloatingPointValue.ofBinaryStrings constructor
FloatingPointValue constructor from a binary string representation of individual bitfields
Implementation
FloatingPointValue.ofBinaryStrings(
String sign, String exponent, String mantissa)
: this(
sign: LogicValue.of(sign),
exponent: LogicValue.of(exponent),
mantissa: LogicValue.of(mantissa));