Expand description
Date and time types unconcerned with timezones.
They are primarily building blocks for other types
(e.g. TimeZone
),
but can be also used for the simpler date and time handling.
Modulesยง
- date ๐ISO 8601 calendar date without timezone.
- datetime ๐ISO 8601 date and time without timezone.
- internals ๐Internal helper types for working with dates.
- isoweek ๐ISO 8601 week.
- Serialization/Deserialization of
NaiveDateTime
in alternate formats - time ๐ISO 8601 time without timezone.
Structsยง
- A duration in calendar days.
- ISO 8601 week.
- ISO 8601 calendar date without timezone. Allows for every proleptic Gregorian date from Jan 1, 262145 BCE to Dec 31, 262143 CE. Also supports the conversion from ISO 8601 ordinal and week date.
- Iterator over
NaiveDate
with a step size of one day. - ISO 8601 combined date and time without timezone.
- Iterator over
NaiveDate
with a step size of one week. - ISO 8601 time without timezone. Allows for the nanosecond precision and optional leap second representation.
Constantsยง
- MAX_DATEDeprecatedThe maximum possible
NaiveDate
(December 31, 262143 CE). - MAX_DATETIMEDeprecatedThe maximum possible
NaiveDateTime
. - MIN_DATEDeprecatedThe minimum possible
NaiveDate
(January 1, 262145 BCE). - MIN_DATETIMEDeprecatedThe minimum possible
NaiveDateTime
.