Returns a sequential ordered stream of dates. The returned stream starts from this date
(inclusive) and goes to endExclusive (exclusive) by an incremental step of 1 day.
This method is equivalent to datesUntil(endExclusive, Period.ofDays(1)).
endExclusive | the end date, exclusive, not null |
Stream for the range of LocalDate values
IllegalArgumentException | if end date is before this date |
Diagram: LocalDate