Popularity
2.2
Declining
Activity
0.0
Stable
1
2
2
Monthly Downloads: 5
Programming language: Haskell
License: BSD 3-clause "New" or "Revised" License
Tags:
Data
Latest version: v1.1.1
currencies alternatives and similar packages
Based on the "Data" category.
Alternatively, view currencies alternatives based on common mentions on social networks and blogs.
-
compendium-client
DISCONTINUED. Mu (μ) is a purely functional framework for building micro services. -
streaming
An optimized general monad transformer for streaming applications, with a simple prelude of functions -
text-icu
This package provides the Haskell Data.Text.ICU library, for performing complex manipulation of Unicode text.
CodeRabbit: AI Code Reviews for Developers
Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
Promo
coderabbit.ai

Do you think we are missing an alternative of currencies or a related project?
README
currencies
ISO 4217 Currencies representation, pretty printing and conversion:
- Represent monetary amounts of a particular currency in a type-safe manner
- Convert amounts between different currencies
- Print human readable amounts
prettyPrint (Amount USD 2342.2)
-- "USD 2,342.20"
prettyPrint (Amount EUR 45827.346)
-- "EUR 45,827.35"
prettyPrintWith (defaultConfig { useCurrencySymbol = True }) (Amount USD 2342.2)
-- "$ 2,342.20"
prettyPrintWith (defaultConfig { useCurrencySymbol = True }) (Amount EUR 2342.2)
-- "€ 2,342.20"
prettyPrintWith (defaultConfig { showDecimals = False }) (Amount USD 25.50)
-- "USD 25"
convert USD (Amount EUR 23482.34)
-- Amount USD 27709.1612
prettyPrint $ convert USD (Amount EUR 23482.34)
-- "USD 27,709.16"
compareAmounts (Amount EUR 1000) (Amount BTC 1) -- Compare to Bitcoin
-- LT