public Stream<LocalDate> datesUntil (LocalDate endExclusive)

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)).

Parameters:
endExclusive    the end date, exclusive, not null

Returns:  a sequential Stream for the range of LocalDate values

Exceptions:
IllegalArgumentException    if end date is before this date

Since:  9