All Downloads are FREE. Search and download functionalities are using the official Maven repository.

nl.hiddewieringa.money.CurrencyContextExtensions.kt Maven / Gradle / Ivy

The newest version!
package nl.hiddewieringa.money

import javax.money.CurrencyContext
import javax.money.CurrencyContextBuilder

/**
 * @see CurrencyContextBuilder.of
 */
fun currencyContext(provider: String, init: CurrencyContextBuilder.() -> Unit = {}): CurrencyContext =
    CurrencyContextBuilder
        .of(provider)
        .apply(init)
        .build()

/**
 * @see CurrencyContextBuilder.of
 */
fun currencyContext(currencyContext: CurrencyContext, init: CurrencyContextBuilder.() -> Unit = {}): CurrencyContext =
    CurrencyContextBuilder
        .of(currencyContext)
        .apply(init)
        .build()




© 2015 - 2025 Weber Informatics LLC | Privacy Policy