operator < method
- @Deprecated('This operator will be replaced with a boolean return in the future.' ' Use .ltBool(other) for the time being.')
- FixedPointValue other
Less-than operation that returns a LogicValue.
Implementation
@Deprecated(
'This operator will be replaced with a boolean return in the future.'
' Use .ltBool(other) for the time being.')
LogicValue operator <(FixedPointValue other) =>
compareTo(other) < 0 ? LogicValue.one : LogicValue.zero;