Cldr.Number.System.number_system_names_for-exclamation-mark
You're seeing just the function
number_system_names_for-exclamation-mark
, go back to Cldr.Number.System module for more information.
Specs
number_system_names_for!( Cldr.Locale.locale_name() | Cldr.LanguageTag.t(), Cldr.backend() ) :: [system_name()] | no_return()
Returns the names of the number systems available for
a locale or an {:error, message}
tuple if the locale
is not known.
Arguments
locale
is any valid locale name returned byCldr.known_locale_names/0
or aCldr.LanguageTag
struct returned byCldr.Locale.new!/2
backend
is anyCldr
backend. That is, any module that containsuse Cldr
Examples
iex> Cldr.Number.System.number_system_names_for!("en", TestBackend.Cldr)
[:latn]
iex> Cldr.Number.System.number_system_names_for!("th", TestBackend.Cldr)
[:latn, :thai]
iex> Cldr.Number.System.number_system_names_for!("he", TestBackend.Cldr)
[:latn, :hebr]