forked from quek/simple-date-time
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.lisp
69 lines (69 loc) · 1.53 KB
/
package.lisp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
(defpackage :simple-date-time
(:use :cl)
(:nicknames :date-time :dt)
(:export #:date-time
#:year-of
#:month-of
#:day-of
#:hour-of
#:minute-of
#:second-of
#:millisecond-of
#:normalize
#:serialize
#:deserialize
#:week-of
#:day-of-week-of
#:day-name-of
#:month-name-of
#:year+
#:month+
#:day+
#:hour+
#:minute+
#:second+
#:millisecond+
#:date=
#:date/=
#:date<
#:date<=
#:date>
#:date>=
#:time=
#:time/=
#:time<
#:time<=
#:time>
#:time>=
#:date-time=
#:date-time/=
#:date-time<
#:date-time<=
#:date-time>
#:date-time>=
#:make-date-time
#:make-date
#:make-time
#:from-universal-time
#:to-universal-time
#:from-posix-time
#:now
#:today
#:tomorrow
#:yesterday
#:from-string
#:yyyy/mm/dd
#:yyyy-mm-dd
#:yy/mm/dd
#:yy-mm-dd
#:yy.mm.dd
#:|hh:mm|
#:|yyyy-mm-dd hh:mm|
#:|yyyy-mm-dd hh:mm:ss|
#:yyyymmdd
#:|yyyymmddThhmmssZ|
#:http-date
#:rfc-2822
#:*default-timezone*
#:clone
))