Closed kilianmh closed 6 months ago
Sorry, I don't think this is within the scope of the library.
I'm writing about this function:
(defun encode-universal-time (second minute hour date month year &optional (time-zone 0))
(cl:encode-universal-time second minute hour date month year time-zone))
The only difference is that time-zone defaults to 0.
Are you sure this is out of scope?
The function
cl:encode-universal-time
gives inconsistent results across different implementations due to different values for thetime-zone
. Do you think we'd add a functionlocal-time:encode-universal-time
to shadow the original while keeping the same function signature buttime-zone
set by default to0
? I think this might be useful in other projects.