operator <= method

bool operator <=(
  1. LocalDate other
)

Less than or equals operator.

Implementation

bool operator <=(LocalDate other) => compareTo(other) <= 0;