A TimeZone structure that stores the timezone offset, the name, abbreviation and if it's in daylight saving time.
- offset : Std.Time.TimeZone.Offset
The
Offset
of the date time. - name : String
The name of the time zone.
- abbreviation : String
The abbreviation of the time zone.
- isDST : Bool
Day light saving flag.
Instances For
Equations
- Std.Time.instBEqTimeZone = { beq := Std.Time.beqTimeZoneâ }
A zeroed Timezone
representing UTC (no offset).
Equations
- Std.Time.TimeZone.UTC = { offset := Std.Time.TimeZone.Offset.zero, name := "UTC", abbreviation := "UTC", isDST := false }
Instances For
A zeroed Timezone
representing GMT (no offset).
Instances For
def
Std.Time.TimeZone.ofHours
(name abbreviation : String)
(n : Std.Time.Hour.Offset)
(isDST : Bool := false)
:
Creates a Timestamp
from a given number of hour.
Equations
- Std.Time.TimeZone.ofHours name abbreviation n isDST = { offset := Std.Time.TimeZone.Offset.ofHours n, name := name, abbreviation := abbreviation, isDST := isDST }
Instances For
def
Std.Time.TimeZone.ofSeconds
(name abbreviation : String)
(n : Std.Time.Second.Offset)
(isDST : Bool := false)
:
Creates a Timestamp
from a given number of second.
Equations
- Std.Time.TimeZone.ofSeconds name abbreviation n isDST = { offset := { second := n }, name := name, abbreviation := abbreviation, isDST := isDST }
Instances For
Gets the number of seconds in a timezone offset.
Equations
- tz.toSeconds = tz.offset.second