operator < method

  1. @nonVirtual
bool operator <(
  1. T other
)

Less than comparison.

Implementation

@nonVirtual
bool operator <(T other) => value < other.value;