Money
Monetary calculations and allocations made easy
Install / Use
/learn @eriksencosta/MoneyREADME
Money
Monetary calculations and allocations made easy.
Installation
Add Money to your Gradle build script:
repositories {
mavenCentral()
}
dependencies {
implementation("com.eriksencosta:money:0.2.0")
}
If you're using Maven, add to your POM xml file:
<dependency>
<groupId>com.eriksencosta</groupId>
<artifactId>money</artifactId>
<version>0.2.0</version>
</dependency>
Usage
The library provides a powerful yet simple API that makes monetary calculations easy:
val price = 100 money "USD" // USD 100.00
val shipping = 5 money "USD" // USD 5.00
val subtotal = price + shipping // USD 105.00
val discount = 10.percent() // 10%
val total = subtotal decreaseBy discount // USD 94.50
val ratios = listOf(60.percent(), 40.percent()) // [60%, 40%]
total allocate 2 // [USD 47.25, USD 47.25]
total allocate ratios // [USD 56.70, USD 37.80]
The library supports arithmetic operations with monetary amounts, calculations with percentages, and allocation, making it simple to model use cases like installment payments (e.g., buy now, pay later), foreign exchange, investment yields, and tax collection. Cryptocurrencies are also fully supported out of the box:
val price = 0.01607580 money "BTC" // BTC 0.01607580
val transactionFee = 1.25.percent() // 1.25%
val total = price increaseBy transactionFee // BTC 0.01627675
val installments = total allocate 3 // [BTC 0.00542559, BTC 0.00542558, BTC 0.00542558]
val rate = 62_555.60 money "USD" // USD 62555.60
val totalInUsd = total exchange rate // USD 1005.63
Refer to the documentation for more about how to work with monetary amounts, supported currencies, available operations, rounding, and allocation.
License
Related Skills
node-connect
335.2kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
frontend-design
82.5kCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
openai-whisper-api
335.2kTranscribe audio via OpenAI Audio Transcriptions API (Whisper).
commit-push-pr
82.5kCommit, push, and open a PR
