Liking cljdoc? Tell your friends :D

Miscellaneous

These examples don’t have a home yet.

Check if an expiration has passed:

(let [expiry (t/instant "2018-01-01T00:00:00.00Z")]
  (t/> (t/now)
       expiry))

Return a sequence of dates between two given dates a with a specified jump between each.

For instance, to get a sequence of the first day of each month in a given year:

(let [intvl (t.i/bounds (t/year))]
  (t/range
    (t/beginning intvl)
    (t/end intvl)
    (t/new-period 1 :months)))

Get the time difference between two instances:

(t/between (t/now) (t/epoch))

Can you improve this documentation? These fine people already did:
Johanna Antonelli, Henry Widd, Johantonelli & Malcolm Sparks
Edit on GitHub

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close