operator < method

bool operator <(
  1. Object other
)

Returns true if this value is less than other (lexicographic order).

Implementation

bool operator <(Object other) => value.compareTo(_resolve(other)) < 0;