neq method
- FixedPointValue other
Not equal-to operation that returns a LogicValue.
Implementation
LogicValue neq(FixedPointValue other) =>
compareTo(other) != 0 ? LogicValue.one : LogicValue.zero;
Not equal-to operation that returns a LogicValue.
LogicValue neq(FixedPointValue other) =>
compareTo(other) != 0 ? LogicValue.one : LogicValue.zero;