operator < method

bool operator <(
  1. Int64 other
)

Returns true if this value evaluates less than other.

Implementation

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