I am writing an app that needs to be quite accurate in dates and I wonder how can I compare LocalDate instances.. for now I was using something like:
LocalDa
LocalDate ld ....; LocalDateTime ldtime ...; ld.isEqual(LocalDate.from(ldtime));