Documentation

Std.Time.Format

The ISO8601 format, which is always 24 or 27 characters long, used for representing date and time in a standardized format. The format follows the pattern uuuu-MM-dd'T'HH:mm:ssZ.

Equations
  • One or more equations did not get rendered due to their size.

The americanDate format, which follows the pattern MM-dd-uuuu.

Equations
  • One or more equations did not get rendered due to their size.

The europeanDate format, which follows the pattern dd-MM-uuuu.

Equations
  • One or more equations did not get rendered due to their size.

The time12Hour format, which follows the pattern hh:mm:ss aa for representing time in a 12-hour clock format with an upper case AM/PM marker.

Equations
  • One or more equations did not get rendered due to their size.

The Time24Hour format, which follows the pattern HH:mm:ss for representing time in a 24-hour clock format.

Equations
  • One or more equations did not get rendered due to their size.

The DateTimeZone24Hour format, which follows the pattern uuuu-MM-dd:HH:mm:ss.SSSSSSSSS for representing date, time, and time zone.

Equations
  • One or more equations did not get rendered due to their size.

The DateTimeWithZone format, which follows the pattern uuuu-MM-dd'T'HH:mm:ss.SSSSSSSSSZZZ for representing date, time, and time zone.

Equations
  • One or more equations did not get rendered due to their size.

The leanTime24Hour format, which follows the pattern HH:mm:ss.SSSSSSSSS for representing time in a 24-hour clock format. It uses the default value that can be parsed with the notation of dates.

Equations
  • One or more equations did not get rendered due to their size.

The leanTime24HourNoNanos format, which follows the pattern HH:mm:ss for representing time in a 24-hour clock format. It uses the default value that can be parsed with the notation of dates.

Equations
  • One or more equations did not get rendered due to their size.

The leanDateTime24Hour format, which follows the pattern uuuu-MM-dd'T'HH:mm:ss.SSSSSSSSS for representing date, time, and time zone. It uses the default value that can be parsed with the notation of dates.

Equations
  • One or more equations did not get rendered due to their size.

The leanDateTime24HourNoNanos format, which follows the pattern uuuu-MM-dd'T'HH:mm:ss for representing date, time, and time zone. It uses the default value that can be parsed with the notation of dates.

Equations
  • One or more equations did not get rendered due to their size.

The leanDateTimeWithZone format, which follows the pattern uuuu-MM-dd'T'HH:mm:ss.SSSSSSSSSZZZZZ for representing date, time, and time zone. It uses the default value that can be parsed with the notation of dates.

Equations
  • One or more equations did not get rendered due to their size.

The leanDateTimeWithZoneNoNanos format, which follows the pattern uuuu-MM-dd'T'HH:mm:ssZZZZZ for representing date, time, and time zone. It uses the default value that can be parsed with the notation of dates.

Equations
  • One or more equations did not get rendered due to their size.

The leanDateTimeWithIdentifier format, which follows the pattern uuuu-MM-dd'T'HH:mm:ss[z] for representing date, time, and time zone. It uses the default value that can be parsed with the notation of dates.

Equations
  • One or more equations did not get rendered due to their size.

The leanDateTimeWithIdentifierAndNanos format, which follows the pattern uuuu-MM-dd'T'HH:mm:ss.SSSSSSSSS'[z]' for representing date, time, and time zone. It uses the default value that can be parsed with the notation of dates.

Equations
  • One or more equations did not get rendered due to their size.

The Lean Date format, which follows the pattern uuuu-MM-dd. It uses the default value that can be parsed with the notation of dates.

Equations
  • One or more equations did not get rendered due to their size.

The SQLDate format, which follows the pattern uuuu-MM-dd and is commonly used in SQL databases to represent dates.

Equations
  • One or more equations did not get rendered due to their size.

The LongDateFormat, which follows the pattern EEEE, MMMM D, uuuu HH:mm:ss for representing a full date and time with the day of the week and month name.

Equations
  • One or more equations did not get rendered due to their size.

The AscTime format, which follows the pattern EEE MMM d HH:mm:ss uuuu. This format is often used in older systems for logging and time-stamping events.

Equations
  • One or more equations did not get rendered due to their size.

The RFC822 format, which follows the pattern eee, dd MMM uuuu HH:mm:ss ZZZ. This format is used in email headers and HTTP headers.

Equations
  • One or more equations did not get rendered due to their size.

The RFC850 format, which follows the pattern eee, dd-MMM-YY HH:mm:ss ZZZ. This format is an older standard for representing date and time in headers.

Equations
  • One or more equations did not get rendered due to their size.

Parses a string into a TimeZone object. The input string must be in the format "VV ZZZZZ".

Equations
  • One or more equations did not get rendered due to their size.

Parses a string representing an offset into an Offset object. The input string must follow the "xxx" format.

Equations

Formats a PlainDate using a specific format.

Equations
  • One or more equations did not get rendered due to their size.

Parses a date string in the American format (MM-dd-uuuu) and returns a PlainDate.

Equations
  • One or more equations did not get rendered due to their size.

Converts a date in the American format (MM-dd-uuuu) into a String.

Equations

Parses a date string in the SQL format (uuuu-MM-dd) and returns a PlainDate.

Equations

Converts a date in the SQL format (uuuu-MM-dd) into a String.

Equations

Parses a date string in the Lean format (uuuu-MM-dd) and returns a PlainDate.

Equations

Converts a date in the Lean format (uuuu-MM-dd) into a String.

Equations

Parses a String in the AmericanDate or SQLDate format and returns a PlainDate.

Equations
Equations
  • One or more equations did not get rendered due to their size.

Formats a PlainTime using a specific format.

Equations
  • One or more equations did not get rendered due to their size.

Parses a time string in the 24-hour format (HH:mm:ss) and returns a PlainTime.

Equations
  • One or more equations did not get rendered due to their size.

Formats a PlainTime value into a 24-hour format string (HH:mm:ss).

Equations

Parses a time string in the lean 24-hour format (HH:mm:ss.SSSSSSSSS or HH:mm:ss) and returns a PlainTime.

Equations
  • One or more equations did not get rendered due to their size.

Formats a PlainTime value into a 24-hour format string (HH:mm:ss.SSSSSSSSS).

Equations

Parses a time string in the 12-hour format (hh:mm:ss aa) and returns a PlainTime.

Equations
  • One or more equations did not get rendered due to their size.

Formats a PlainTime value into a 12-hour format string (hh:mm:ss aa).

Equations
  • One or more equations did not get rendered due to their size.

Parses a String in the Time12Hour or Time24Hour format and returns a PlainTime.

Equations
Equations
  • One or more equations did not get rendered due to their size.

Formats a ZonedDateTime using a specific format.

Equations

Parses a String in the ISO8601 format and returns a ZonedDateTime.

Equations

Formats a ZonedDateTime value into an ISO8601 string.

Equations

Parses a String in the rfc822 format and returns a ZonedDateTime.

Equations

Formats a ZonedDateTime value into an RFC822 format string.

Equations

Parses a String in the rfc850 format and returns a ZonedDateTime.

Equations

Formats a ZonedDateTime value into an RFC850 format string.

Equations

Parses a String in the dateTimeWithZone format and returns a ZonedDateTime object in the GMT time zone.

Equations

Formats a ZonedDateTime value into a simple date time with timezone string.

Equations

Formats a DateTime value into a simple date time with timezone string that can be parsed by the date% notation.

Equations

Formats a DateTime value into a simple date time with timezone string that can be parsed by the date% notation with the timezone identifier.

Equations
  • One or more equations did not get rendered due to their size.

Parses a String in the ISO8601, RFC822 or RFC850 format and returns a ZonedDateTime.

Equations
  • One or more equations did not get rendered due to their size.
Equations
  • One or more equations did not get rendered due to their size.

Formats a PlainDateTime using a specific format.

Equations
  • One or more equations did not get rendered due to their size.

Parses a String in the AscTime format and returns a PlainDateTime object in the GMT time zone.

Equations

Formats a PlainDateTime value into a DateTime format string.

Equations

Parses a String in the DateTime format and returns a PlainDateTime.

Equations
  • One or more equations did not get rendered due to their size.

Formats a PlainDateTime value into a DateTime format string.

Equations

Parses a String in the AscTime or LongDate format and returns a PlainDateTime.

Equations
  • One or more equations did not get rendered due to their size.
Equations
  • One or more equations did not get rendered due to their size.
def Std.Time.DateTime.format {tz : TimeZone} (data : DateTime tz) (format : String) :

Formats a DateTime using a specific format.

Equations

Parses a String in the AscTime format and returns a DateTime object in the GMT time zone.

Equations

Formats a DateTime value into an AscTime format string.

Equations

Parses a String in the LongDateFormat and returns a DateTime object in the GMT time zone.

Equations

Formats a DateTime value into a LongDateFormat string.

Equations

Formats a DateTime value into an ISO8601 string.

Equations

Formats a DateTime value into an RFC822 format string.

Equations

Formats a DateTime value into an RFC850 format string.

Equations

Formats a DateTime value into a DateTimeWithZone format string.

Equations

Formats a DateTime value into a DateTimeWithZone format string that can be parsed by date%.

Equations

Parses a String in the AscTime or LongDate format and returns a DateTime.

Equations