timex v3.2.0 Timex.Format.Duration.Formatter behaviour View Source

This module defines the behaviour for custom Time formatters

Link to this section Summary

Functions

Formats a Duration as a string, using the provided formatter. If a formatter is not provided, the formatter used is Timex.Format.Duration.Formatters.Default. As a handy shortcut, you can reference the other built-in formatter (Humanized) via the :humanized atom as shown below

Same as format/1, but takes a formatter name as an argument

Same as format/1, but takes a locale name as an argument, and translates the format string, if the locale has translations

Same as lformat/2, but takes a formatter as an argument

Link to this section Functions

Link to this function format(duration) View Source
format(Timex.Duration.t()) :: String.t() | {:error, term()}

Formats a Duration as a string, using the provided formatter. If a formatter is not provided, the formatter used is Timex.Format.Duration.Formatters.Default. As a handy shortcut, you can reference the other built-in formatter (Humanized) via the :humanized atom as shown below.

Examples

iex> d = Timex.Duration.from_erl({1435, 180354, 590264})
...> Elixir.Timex.Format.Duration.Formatter.format(d)
"P45Y6M5DT21H12M34.590264S"
Link to this function format(duration, formatter) View Source
format(Timex.Duration.t(), atom()) :: String.t() | {:error, term()}

Same as format/1, but takes a formatter name as an argument

Examples

iex> d = Timex.Duration.from_erl({1435, 180354, 590264})
...> Elixir.Timex.Format.Duration.Formatter.format(d, :humanized)
"45 years, 6 months, 5 days, 21 hours, 12 minutes, 34 seconds, 590.264 milliseconds"
Link to this function lformat(duration, locale) View Source
lformat(Timex.Duration.t(), String.t()) :: String.t() | {:error, term()}

Same as format/1, but takes a locale name as an argument, and translates the format string, if the locale has translations.

Link to this function lformat(duration, locale, formatter) View Source
lformat(Timex.Duration.t(), String.t(), atom()) :: String.t() | {:error, term()}

Same as lformat/2, but takes a formatter as an argument

Link to this section Callbacks

Link to this callback format(arg0) View Source
format(Timex.Duration.t()) :: String.t() | {:error, term()}
Link to this callback lformat(arg0, locale) View Source
lformat(Timex.Duration.t(), locale :: String.t()) ::
  String.t() | {:error, term()}