(calculate date)(calculate date-from date-to)Given a date, return the number of days from that date till today. Given a from and to date, return the number of days between them. Input parameter is a map with :year, :month and :day as keywords. Example {:year 1980 :month 1 :day 10} Single digit numbers should not be prefixed with 0, since in Java, numbers prefixed with a 0 are treated as octal. So January should be represented as 1 and not 01
Given a date, return the number of days from that date till today.
Given a from and to date, return the number of days between them.
Input parameter is a map with :year, :month and :day as keywords. Example {:year 1980 :month 1 :day 10}
Single digit numbers should not be prefixed with 0, since in Java, numbers prefixed with a 0 are treated as octal. So January should be represented as 1 and not 01(forecast date milestone limit)Get the forcast for the given date, milestone and limit Date is a map with :year, :month and :day as keywords. Milestone and limit are integers.
Get the forcast for the given date, milestone and limit Date is a map with :year, :month and :day as keywords. Milestone and limit are integers.
(forecast-date date milestone)Get the forecast date for the milestone from the given date. Date is a map with :year, :month and :day as keywords. Milestone is an integer.
Get the forecast date for the milestone from the given date. Date is a map with :year, :month and :day as keywords. Milestone is an integer.
cljdoc builds & hosts documentation for Clojure/Script libraries
| Ctrl+k | Jump to recent docs |
| ← | Move to previous article |
| → | Move to next article |
| Ctrl+/ | Jump to the search field |