operator <= method

LogicValue operator <=(
  1. FixedPointValue other
)

Less-than operation that returns a LogicValue.

Implementation

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