Skip to content

Instantly share code, notes, and snippets.

@mprokopov
Created June 29, 2021 11:31
Show Gist options
  • Save mprokopov/2f4cc0cc61ac5e9edd55582c09a6eca9 to your computer and use it in GitHub Desktop.
Save mprokopov/2f4cc0cc61ac5e9edd55582c09a6eca9 to your computer and use it in GitHub Desktop.
clojure time span at beginning of the month and at the end of the month
(def now (java.time.LocalDateTime/now))
(-> now
(.with (java.time.temporal.TemporalAdjusters/firstDayOfMonth))
(.with (java.time.LocalTime/MIN)))
(-> now
(.with (java.time.temporal.TemporalAdjusters/lastDayOfMonth))
(.with (java.time.LocalTime/MAX)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment