operator < method

bool operator <(
  1. LocalDate other
)

Less than operator.

Implementation

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