TOML Date-Time #
Defines data types for representing a TOML date-time. TOML date-times are based on IETF RFC 3339 with some components optionally left out, creating four distinct variants.
- Offset Date-Time: A full RFC 3339 date-time.
- Local Date-Time: An RFC 3339 date-time without the time zone.
- Local Date: The date portion of an RFC 3339 date-time (year-month-day).
- Local Time: The time portion of an RFC 3339 date-time (without time zone).
Equations
- Lake.Toml.instInhabitedTime = { default := { hour := default, minute := default, second := default, fracExponent := default, fracMantissa := default } }
Equations
- Lake.Toml.Time.zero = { hour := 0, minute := 0, second := 0, fracExponent := 0, fracMantissa := 0 }
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- Lake.Toml.Time.instToString = { toString := Lake.Toml.Time.toString }
A TOML date-time.
- offsetDateTime: Lake.Date → Lake.Toml.Time → optParam (Option (Bool × Lake.Toml.Time)) none → Lake.Toml.DateTime
- localDateTime: Lake.Date → Lake.Toml.Time → Lake.Toml.DateTime
- localDate: Lake.Date → Lake.Toml.DateTime
- localTime: Lake.Toml.Time → Lake.Toml.DateTime
Instances For
Equations
- Lake.Toml.instInhabitedDateTime = { default := Lake.Toml.DateTime.offsetDateTime default default default }
Equations
Equations
Equations
- One or more equations did not get rendered due to their size.