Cldr.Currency.known_currency_code-question-mark
You're seeing just the function
known_currency_code-question-mark
, go back to Cldr.Currency module for more information.
Specs
Returns a boolean indicating if the supplied currency code is known.
Arguments
currency_code
is abinary
oratom
representing an ISO4217 currency code
Returns
true
orfalse
Examples
iex> Cldr.Currency.known_currency_code? "AUD"
true
iex> Cldr.Currency.known_currency_code? "GGG"
false
iex> Cldr.Currency.known_currency_code? :XCV
false