pow method

LogicValue pow(
  1. dynamic exponent
)

Power operation.

This will return a LogicValue of some input 'base' to the power of other input exponent. If one of the two input values is invalid, pow will return ‘x’ of input size width.

Implementation

LogicValue pow(dynamic exponent) => _doMath(exponent, _powerOperation);