operator <= method

bool operator <=(
  1. Int8 other
)

Returns true if this bounds-checked value is less than or equal to other.

Implementation

bool operator <=(Int8 other) => value <= other.value;