The Swim Time library implements date-time, time zone, and time interval data
types, with strptime/strftime-style parsers and formatters. The Swim Time
library facilitates parsing and formatting of date strings, time zone aware
date manipulation, and sampling of date ranges at regular time intervals.
The DateTime class models an immutable instant in time, relative to a
particular TimeZone. The DateTime.current static method returns the
current time in the local time zone, or in an optionally specified time zone.
The DateTime.fromInit static method coerces plain JavaScript objects, of type
DateTimeInit, to instances of DateTime. DateTime.fromInit defaults to UTC,
but can optionally be passed a specific time zone.
The DateTime.fromAny static method coerces common JavaScript date
representations, including ECMAScript Date objects, numbers representing
milliseconds since the Unix epoch, and ISO 8601-formatted date-time strings,
to DateTime instances.
The TimeZone class represents an immutable offset, in minutes, from Universal
Coordinated Time (UTC). The TimeZone.local and TimeZone.utc static methods
return the current local time zone, and the UTC time zone, respectively.
A DateTimeFormat represents a string encoding that parse date-time strings
as DateTime objects, and format DateTime objects as date-time strings.
The DateTimeFormat.iso8601 static method returns the standard ISO 8601
date-time format. The DateTimeFormat.pattern method returns a
DateTimeFormat that parses and formats date-times according to a
strptime/strftime-style format string.
Use the parse method of a DateTimeFormat to parse a DateTime object from
a compatible date-time string:
Use the format method of a DateTimeFormat to serialize a DateTime object
to a compatible date-time string. You can also optionally pass a
DateTimeFormat to a DateTime's toString method.
A DateTimeLocale specifies the period, weekday, short weekday, month, and
short month strings used when parsing and formatting date-time strings.
DateTimeLocale.standard() returns the standard English language locale.
A TimeInterval represents a regular duration of time. A UnitTimeInterval
represents a time interval with a uniform duration. Milliseconds, seconds,
minutes, hours, and days are unit time intervals. Weeks, months, and years
are not unit time intervals, because different weeks, months, and years can
have different durations.
Time intervals can be created with the TimeInterval.millisecond,
TimeInterval.second, TimeInterval.minute, TimeInterval.hour,
TimeInterval.day, TimeInterval.week, TimeInterval.month, and
TimeInterval.year factory methods.
A TimeInterval can be used to offset a DateTime by a multiple of the
interval, to advance to the next whole multiple of the interval, to round
a DateTime down to the floor of the interval, to round a DateTime up
to the ceil of the interval, or to round a DateTime to the nearest
whole interval.
The range method of a TimeInterval returns an array of DateTimes
representing every whole interval between some start time (inclusive), and
some end time (exclusive). An optional third argument to range indicates
that only every step multiple of the base interval should be included in
the returned range.
The TimeInterval.milliseconds, TimeInterval.seconds, TimeInterval.minutes,
TimeInterval.hours, TimeInterval.days, TimeInterval.weeks,
TimeInterval.months, and TimeInterval.years factory methods provide
a shorthand for computing a range of DateTimes between two times, and
return the equivalent of calling range on the underlying time interval.
The Swim Time library implements date-time, time zone, and time interval data types, with
strptime/strftime-style parsers and formatters. The Swim Time library facilitates parsing and formatting of date strings, time zone aware date manipulation, and sampling of date ranges at regular time intervals.Overview
DateTime
The
DateTimeclass models an immutable instant in time, relative to a particularTimeZone. TheDateTime.currentstatic method returns the current time in the local time zone, or in an optionally specified time zone.The
DateTime.fromInitstatic method coerces plain JavaScript objects, of typeDateTimeInit, to instances ofDateTime.DateTime.fromInitdefaults to UTC, but can optionally be passed a specific time zone.The
DateTime.fromAnystatic method coerces common JavaScript date representations, including ECMAScriptDateobjects, numbers representing milliseconds since the Unix epoch, and ISO 8601-formatted date-time strings, toDateTimeinstances.TimeZone
The
TimeZoneclass represents an immutable offset, in minutes, from Universal Coordinated Time (UTC). TheTimeZone.localandTimeZone.utcstatic methods return the current local time zone, and the UTC time zone, respectively.DateTimeFormat
A
DateTimeFormatrepresents a string encoding that parse date-time strings asDateTimeobjects, and formatDateTimeobjects as date-time strings. TheDateTimeFormat.iso8601static method returns the standard ISO 8601 date-time format. TheDateTimeFormat.patternmethod returns aDateTimeFormatthat parses and formats date-times according to astrptime/strftime-style format string.Use the
parsemethod of aDateTimeFormatto parse aDateTimeobject from a compatible date-time string:Use the
formatmethod of aDateTimeFormatto serialize aDateTimeobject to a compatible date-time string. You can also optionally pass aDateTimeFormatto aDateTime'stoStringmethod.DateTimeLocale
A
DateTimeLocalespecifies the period, weekday, short weekday, month, and short month strings used when parsing and formatting date-time strings.DateTimeLocale.standard()returns the standard English language locale.TimeInterval
A
TimeIntervalrepresents a regular duration of time. AUnitTimeIntervalrepresents a time interval with a uniform duration. Milliseconds, seconds, minutes, hours, and days are unit time intervals. Weeks, months, and years are not unit time intervals, because different weeks, months, and years can have different durations.Time intervals can be created with the
TimeInterval.millisecond,TimeInterval.second,TimeInterval.minute,TimeInterval.hour,TimeInterval.day,TimeInterval.week,TimeInterval.month, andTimeInterval.yearfactory methods.A
TimeIntervalcan be used tooffsetaDateTimeby a multiple of the interval, to advance to thenextwhole multiple of the interval, to round aDateTimedown to thefloorof the interval, to round aDateTimeup to theceilof the interval, or toroundaDateTimeto the nearest whole interval.The
everymethod of aUnitTimeIntervalreturns a newTimeIntervalequal to a multiple of the base time interval.The
rangemethod of aTimeIntervalreturns an array ofDateTimes representing every whole interval between some start time (inclusive), and some end time (exclusive). An optional third argument torangeindicates that only everystepmultiple of the base interval should be included in the returned range.The
TimeInterval.milliseconds,TimeInterval.seconds,TimeInterval.minutes,TimeInterval.hours,TimeInterval.days,TimeInterval.weeks,TimeInterval.months, andTimeInterval.yearsfactory methods provide a shorthand for computing a range ofDateTimes between two times, and return the equivalent of callingrangeon the underlying time interval.