Elixir v1.4.4 Calendar behaviour View Source
This module defines the responsibilities for working with calendars, dates, times and datetimes in Elixir.
Currently it defines types and the minimal implementation for a calendar behaviour in Elixir. The goal of the Calendar features in Elixir is to provide a base for interoperability instead of full-featured datetime API.
For the actual date, time and datetime structures, see Date
,
Time
, NaiveDateTime
and DateTime
.
Note the year, month, day, etc designations are overspecified (i.e. an integer instead of 1..12 for months) because different calendars may have a different number of days per month, months per year and so on.
Link to this section Summary
Types
A calendar implementation
Any map/struct that contains the date fields
Any map/struct that contains the datetime fields
Microseconds with stored precision
Any map/struct that contains the naive_datetime fields
From 0 to 60 to account for leap seconds
The time zone standard offset in seconds (not zero in summer times)
Any map/struct that contains the time fields
The time zone ID according to the IANA tz database (e.g. Europe/Zurich)
The time zone UTC offset in seconds
The time zone abbreviation (e.g. CET or CEST or BST etc.)
Callbacks
Converts the date into a string according to the calendar
Coverts the date time (with time zone) into a string according to the calendar
Calculates the day of the week from the given year
, month
, and day
Returns how many days there are in the given year-month
Returns true if the given year is a leap year
Converts the date time (without time zone) into a string according to the calendar
Link to this section Types
A calendar implementation
Any map/struct that contains the date fields
datetime() :: %{optional(any) => any, :calendar => calendar, :year => year, :month => month, :day => day, :hour => hour, :minute => minute, :second => second, :microsecond => microsecond, :time_zone => time_zone, :zone_abbr => zone_abbr, :utc_offset => utc_offset, :std_offset => std_offset}
Any map/struct that contains the datetime fields
Microseconds with stored precision.
The precision represents the number of digits that must be used when representing the microseconds to external format. If the precision is 0, it means microseconds must be skipped.
Any map/struct that contains the naive_datetime fields
From 0 to 60 to account for leap seconds
The time zone standard offset in seconds (not zero in summer times)
time() :: %{optional(any) => any, :hour => hour, :minute => minute, :second => second, :microsecond => microsecond}
Any map/struct that contains the time fields
The time zone ID according to the IANA tz database (e.g. Europe/Zurich)
The time zone UTC offset in seconds
The time zone abbreviation (e.g. CET or CEST or BST etc.)
Link to this section Callbacks
Converts the date into a string according to the calendar.
datetime_to_string(year, month, day, hour, minute, second, microsecond, time_zone, zone_abbr, utc_offset, std_offset) :: String.t
Coverts the date time (with time zone) into a string according to the calendar.
Calculates the day of the week from the given year
, month
, and day
.
Returns how many days there are in the given year-month.
Returns true if the given year is a leap year.
A leap year is a year of a longer length than normal. The exact meaning
is up to the calendar. A calendar must return false
if it does not support
the concept of leap years.
Converts the date time (without time zone) into a string according to the calendar.