operator < method

bool operator <(
  1. TValue other
)

Determines whether this value is less than other.

Implementation

bool operator <(TValue other) => baseValue < other.baseValue;