neq method
- @Deprecated('This operator will be removed, please use != instead.')
- FixedPointValue other
Not equal-to operation that returns a LogicValue.
Implementation
@Deprecated('This operator will be removed, please use != instead.')
LogicValue neq(FixedPointValue other) =>
compareTo(other) != 0 ? LogicValue.one : LogicValue.zero;