The datetime struct represents the combination of a date and a time ; that is, it represents a date at a particular time-of-day. However, it does not include time zone information, so it does not represent an absolute moment in time.
year:exact-integer?
#<datetime 1970年01月01日T00:00:00>
#<datetime 1969年07月21日T02:56:00>
procedure
( jd->datetime jd)→datetime?
jd:real?
#<datetime -4713年11月24日T12:00:00>
#<datetime 1970年01月01日T00:00:00>
procedure
( posix->datetime posix)→datetime?
posix:real?
#<datetime 1970年01月01日T00:00:00>
#<datetime 2038年01月19日T03:14:08>
procedure
( datetime->iso8601 dt)→string?
dt:datetime?
"1970-01-01T00:00:00"
"1969-07-21T02:56:00"
"0001-02-03T04:05:06.000000007"
#t
#f
#t
value
'=
'>
'<
#<splay-tree*>