You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
we have: LocalDate.atStartOfDayIn but we don't have endOfDay.
It would be nice to add that as well.
We would like to use LocalDate.atTime(LocalTime.MAX) but LocalTime.MAX is marked as internal, so it's impossible.
Other way is use create custom extension like: LocalDate.plus(1.days).atStartOfDayIn().minus(1.nano/micro) etc, but it's not straightforward. It would be nice to have it inside kotlinx-datetime natively.