lteBool method

bool lteBool(
  1. FixedPointValue other
)

Less-than-or-equal operation that returns a bool.

Implementation

bool lteBool(FixedPointValue other) => compareTo(other) <= 0;