brief-weekday | (brief-weekday second-count) | Given an integer, second-count, return the weekday as a brief string, of the time second-count. |
danish-week-number | (danish-week-number sc) | Given a number sc, return the week number in which sc i located. |
date-ok? | (date-ok? x) | Return whether x is a legal date string (of the form "ddmmyyyy")
Exact determination, including february and leap years. |
date-string | (date-string second-count) | Return the date, in the format "ddmmyyyy" of second-count,
which represents the time in seconds elapsed since January 1, 1970. |
date-time | (date-time second-count) | Given an integer, second-cound, return a list of two strings: (date time). |
date-time-one-string | (date-time-one-string second-count) | Return a single string that pretty prints the time represented by second count. |
days-in-month | (days-in-month month year) | Return the number of days in month and year
|
get-month-name | (get-month-name month-number) | Return the month name of month-number. |
leap-year | (leap-year y) | Return whether y is a leap year. |
present-time-interval | (present-time-interval second-count) | Return a string which presens the number of years, months, weeks, days, hours, minutes, and seconds
of second-count
|
second-count | (second-count y mo d h mi s) | Given date and time in terms of year y, month mo, day d, hour h, minutes mi, and seconds s, caluculate the second count. |
time-decode | (time-decode n) | Given an integer n, which is the number of second since january 1, 1970,
return a list: (year month day minutes seconds). |
time-encode | (time-encode y mo d h mi s) | An alias of second-count - encode year, month, day, hour, minutes, and seconds to an integer. |
time-interval | (time-interval second-count) | Return the number of years, months, weeks, days, hours, minutes, and seconds
from second-count. |
time-ok? | (time-ok? x) | Return whether x is a legal time string (of the form "hhmm")
|
time-string | (time-string second-count) | Return the date, in the format "ddmmyyyy" of second-count,
which represents the time in seconds elapsed since January 1, 1970. |
transform-year-month-day-hour-minutes-strings | (transform-year-month-day-hour-minutes-strings date time) | Transform date and time strings to a second count (a large integer number of seconds elapsed since january 1, 1970). |
weekday | (weekday second-count) | Given an integer, second-count, return the weekday of the time second-count. |
weekday-number | (weekday-number second-count) | Return the weekday-number of second-count (an integer). |
when-generated | (when-generated) | Return a string that describes the current time as generation time. |