operator <= method

bool operator <=(
  1. Vintage other
)

Returns true if value is less than or equal to other's value.

Implementation

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