eq method

LogicValue eq(
  1. FixedPointValue other
)

Equal-to operation that returns a LogicValue.

Implementation

LogicValue eq(FixedPointValue other) =>
    compareTo(other) == 0 ? LogicValue.one : LogicValue.zero;