Liking cljdoc? Tell your friends :D

days-on-earth.core


calculateclj

(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
sourceraw docstring

forecastclj

(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.
sourceraw docstring

forecast-dateclj

(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.
sourceraw docstring

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

× close