operator < method

bool operator <(
  1. Int16 other
)

Returns true if this value evaluates less than other.

Implementation

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