FloatingPointValue.ofLogicValue constructor

FloatingPointValue.ofLogicValue(
  1. int exponentWidth,
  2. int mantissaWidth,
  3. LogicValue val
)

Construct a FloatingPointValue from a LogicValue

Implementation

factory FloatingPointValue.ofLogicValue(
        int exponentWidth, int mantissaWidth, LogicValue val) =>
    buildOfLogicValue(
        FloatingPointValue.new, exponentWidth, mantissaWidth, val);