operator < method

bool operator <(
  1. Uint8 other
)

Returns true if this value evaluates less than other.

Implementation

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