operator >= method

  1. @Deprecated('This operator will be replaced with a boolean return in the future. ' 'Use .gteBool(other) for the time being.')
LogicValue operator >=(
  1. FixedPointValue other
)

Less-than operation that returns a LogicValue.

Implementation

@Deprecated(
    'This operator will be replaced with a boolean return in the future. '
    'Use .gteBool(other) for the time being.')
LogicValue operator >=(FixedPointValue other) =>
    compareTo(other) >= 0 ? LogicValue.one : LogicValue.zero;