Cldr.Timezone.get

You're seeing just the function get, go back to Cldr.Timezone module for more information.
Link to this function

get(short_zone, default \\ nil)

View Source

Specs

get(String.t(), String.t() | nil) :: [String.t()] | nil

Returns a list of IANA time zone names for a given CLDR short zone code, or nil

Examples

iex> Cldr.Timezone.fetch("ausyd")
["Australia/Sydney", "Australia/ACT", "Australia/Canberra", "Australia/NSW"]}

iex> Cldr.Timezone.fetch("nope")
nil