Money.Cldr.Currency.known_currency_code-question-mark
You're seeing just the function
known_currency_code-question-mark
, go back to Money.Cldr.Currency module for more information.
Specs
known_currency_code?(Cldr.Currency.code()) :: boolean()
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> Money.Cldr.Currency.known_currency_code? "AUD"
true
iex> Money.Cldr.Currency.known_currency_code? "GGG"
false
iex> Money.Cldr.Currency.known_currency_code? :XCV
false