operator <= method

bool operator <=(
  1. Byte other
)

Less than or equal operator.

Implementation

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