CurrenciesΒΆ

Derived from Ito.jl, the Currency type contains a variety of currencies worldwide, which are generated at compile time.

immutable Currency <: AbstractCurrency
  name::AbstractString
  code::AbstractString
  numeric::Int
  symbol::AbstractString
  fractionSymbol::AbstractString
  fractionsPerUnit::Int
  rounding::Function
  formatString::AbstractString
end

Example of usage:

EURCurrency() # Euro
USDCurrency() # USD