operator < method

bool operator <(
  1. Vintage other
)

Returns true if value is less than other's value.

Implementation

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