operator < method

bool operator <(
  1. Day other
)

Checks if this day is strictly before another day.

Implementation

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