operator <= method

bool operator <=(
  1. Day other
)

Checks if this day is before or the same as another day.

Implementation

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