calendar: today is now midnight.
parent
c730bf62bd
commit
d8b963872b
|
@ -490,11 +490,15 @@ HELP: saturday
|
|||
|
||||
HELP: midnight
|
||||
{ $values { "timestamp" timestamp } { "new-timestamp" timestamp } }
|
||||
{ $description "Returns a new timestamp that represents today at midnight, or the beginning of the day." } ;
|
||||
{ $description "Returns a new timestamp that represents the day at midnight, or the beginning of the day." } ;
|
||||
|
||||
HELP: noon
|
||||
{ $values { "timestamp" timestamp } { "new-timestamp" timestamp } }
|
||||
{ $description "Returns a new timestamp that represents today at noon, or the middle of the day." } ;
|
||||
{ $description "Returns a new timestamp that represents the day at noon, or the middle of the day." } ;
|
||||
|
||||
HELP: today
|
||||
{ $values { "timestamp" timestamp } }
|
||||
{ $description "Returns a timestamp that represents today at midnight." } ;
|
||||
|
||||
HELP: beginning-of-month
|
||||
{ $values { "timestamp" timestamp } { "new-timestamp" timestamp } }
|
||||
|
|
|
@ -416,8 +416,11 @@ M: timestamp day-name day-of-week day-names nth ;
|
|||
: noon ( timestamp -- new-timestamp )
|
||||
midnight 12 >>hour ; inline
|
||||
|
||||
: today ( -- timestamp )
|
||||
now midnight ; inline
|
||||
|
||||
: beginning-of-month ( timestamp -- new-timestamp )
|
||||
midnight 1 >>day ;
|
||||
midnight 1 >>day ; inline
|
||||
|
||||
: end-of-month ( timestamp -- new-timestamp )
|
||||
[ midnight ] [ days-in-month ] bi >>day ;
|
||||
|
|
Loading…
Reference in New Issue