juxt

Casey 2022-11-07T08:14:04.586199Z

Is there a tick equivalent for clj-time's in-seconds and in-minutes for intervals? I can't seem to find a direct corresponding fn.

tomd 2022-11-07T09:48:08.744079Z

tick/minutes and tick/seconds operate on a duration rather than an interval, so you can just make your interval a duration before passing it through:

(t/minutes (t/duration my-interval))

❤️ 1