money-module/src/main/kotlin/com/cubetiqs/money/MoneyExtension.kt

7 lines
300 B
Kotlin
Raw Normal View History

package com.cubetiqs.money
2020-08-27 10:48:31 +07:00
fun StdMoney.exchangeTo(currency: StdMoney.Currency): StdMoney {
return MoneyExchangeUtils.exchange(this, currency)
}
fun StdMoney.isMatchedCurrency(currency: StdMoney.Currency) = this.getMoneyCurrency().getCurrency().equals(currency.getCurrency(), ignoreCase = true)