We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The docs for iso8601->datetime say:
iso8601->datetime
(iso8601->datetime str) → date?
and the final word of that line even links to Gregor's date? predicate. Empirically, however, it returns a datetime, which is not a date.
date?
datetime
date
> (date? (iso8601->datetime "2014-03-20T19:20:09.3045")) #f > (datetime? (iso8601->datetime "2014-03-20T19:20:09.3045")) #t
Also on this page:
iso8601->time
time
iso8601->moment
moment
iso8601/tzid->moment
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The docs for
iso8601->datetime
say:and the final word of that line even links to Gregor's
date?
predicate. Empirically, however, it returns adatetime
, which is not adate
.Also on this page:
iso8601->time
says it returnsdate
, but returns atime
iso8601->moment
says it returnsdate
, but returns amoment
iso8601/tzid->moment
says it returnsdate
, but returns amoment
The text was updated successfully, but these errors were encountered: