Represents a date and time with timezone information.
- date : Thunk PlainDateTime
The plain datetime component, evaluated lazily.
- timestamp : Timestamp
The corresponding timestamp for the datetime.
- rules : TimeZone.ZoneRules
The timezone rules applied to this datetime.
- timezone : TimeZone
The timezone associated with this datetime.
Instances For
Creates a new ZonedDateTime
out of a Timestamp
and a ZoneRules
.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Creates a new ZonedDateTime
out of a PlainDateTime
and a ZoneRules
.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Creates a new ZonedDateTime
out of a PlainDateTime
and a TimeZone
.
Equations
Instances For
Changes the ZoleRules
to a new one.
Instances For
Creates a new ZonedDateTime
out of a PlainDateTime
. It assumes that the PlainDateTime
is relative
to UTC.
Equations
Instances For
Returns the weekday.
Instances For
Returns the unaligned week of the month for a ZonedDateTime
(day divided by 7, plus 1).
Instances For
Determines the week of the month for the given ZonedDateTime
. The week of the month is calculated based
on the day of the month and the weekday. Each week starts on Monday because the entire library is
based on the Gregorian Calendar.
Instances For
Add Month.Offset
to a ZonedDateTime
, clipping to the last valid day.
Equations
Instances For
Subtract Month.Offset
from a ZonedDateTime
, clipping to the last valid day.
Equations
Instances For
Add Month.Offset
to a ZonedDateTime
, rolling over excess days.
Equations
Instances For
Subtract Month.Offset
from a ZonedDateTime
, rolling over excess days.
Equations
Instances For
Add Year.Offset
to a ZonedDateTime
, rolling over excess days.
Equations
Instances For
Subtract Year.Offset
from a ZonedDateTime
, rolling over excess days.
Equations
Instances For
Add Millisecond.Offset
to a DateTime
.
Equations
Instances For
Subtract Millisecond.Offset
from a DateTime
.
Equations
Instances For
Add Nanosecond.Offset
to a ZonedDateTime
.
Equations
Instances For
Subtract Nanosecond.Offset
from a ZonedDateTime
.
Equations
Instances For
Sets the ZonedDateTime
to the specified desiredWeekday
.
Equations
Instances For
Creates a new ZonedDateTime
by adjusting the day of the month to the given days
value, with any
out-of-range days clipped to the nearest valid date.
Equations
Instances For
Creates a new ZonedDateTime
by adjusting the day of the month to the given days
value, with any
out-of-range days rolled over to the next month or year as needed.
Equations
Instances For
Creates a new ZonedDateTime
by adjusting the month to the given month
value.
The day remains unchanged, and any invalid days for the new month will be handled according to the clip
behavior.
Equations
Instances For
Creates a new ZonedDateTime
by adjusting the month to the given month
value.
The day is rolled over to the next valid month if necessary.
Equations
Instances For
Creates a new ZonedDateTime
by adjusting the year to the given year
value. The month and day remain unchanged,
and any invalid days for the new year will be handled according to the clip
behavior.
Equations
Instances For
Creates a new ZonedDateTime
by adjusting the year to the given year
value. The month and day are rolled
over to the next valid month and day if necessary.
Equations
Instances For
Creates a new ZonedDateTime
by adjusting the minute
component.
Equations
Instances For
Creates a new ZonedDateTime
by adjusting the second
component.
Equations
Instances For
Creates a new ZonedDateTime
by adjusting the nano
component with a new millis
that will set
in the millisecond scale.
Equations
Instances For
Creates a new ZonedDateTime
by adjusting the nano
component.
Equations
Instances For
Checks if the ZonedDateTime
is in a leap year.
Instances For
Converts a ZonedDateTime
to the number of days since the UNIX epoch.
Instances For
Converts a ZonedDateTime
to the number of days since the UNIX epoch.
Equations
Instances For
Equations
Equations
- Std.Time.ZonedDateTime.instHAddDuration = { hAdd := fun (x : Std.Time.ZonedDateTime) (y : Std.Time.Duration) => x.addNanoseconds y.toNanoseconds }
Equations
- Std.Time.ZonedDateTime.instHSubDuration_1 = { hSub := fun (x : Std.Time.ZonedDateTime) (y : Std.Time.Duration) => x.subNanoseconds y.toNanoseconds }