operator <= method

bool operator <=(
  1. T other
)

Whether this T is numerically smaller than or equal to other.

Implementation

bool operator <=(T other) => compareTo(other) <= 0;