File tree Expand file tree Collapse file tree 2 files changed +15
-0
lines changed Expand file tree Collapse file tree 2 files changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -643,6 +643,8 @@ Dates.TimeType
643
643
Dates.DateTime
644
644
Dates.Date
645
645
Dates.Time
646
+ Dates.TimeZone
647
+ Dates.UTC
646
648
```
647
649
648
650
## Dates Functions
Original file line number Diff line number Diff line change @@ -83,7 +83,20 @@ abstract type Calendar <: AbstractTime end
83
83
# ISOCalendar provides interpretation rules for UTInstants to civil date and time parts
84
84
struct ISOCalendar <: Calendar end
85
85
86
+ """
87
+ TimeZone
88
+
89
+ Geographic zone generally based on longitude determining what the time is at a certain location.
90
+ Some time zones observe daylight savings (eg EST -> EDT).
91
+ """
86
92
abstract type TimeZone end
93
+
94
+ """
95
+ UTC
96
+
97
+ `UTC`, or Coordinated Universal Time, is the [`TimeZone`](@ref) from which all others are measured.
98
+ It is associated with the time at 0° longitude. It is not adjusted for daylight savings.
99
+ """
87
100
struct UTC <: TimeZone end
88
101
89
102
"""
You can’t perform that action at this time.
0 commit comments