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

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

The newest version!
package nl.hiddewieringa.money

import javax.money.RoundingContext
import javax.money.RoundingContextBuilder

/**
 * @see RoundingContextBuilder.of
 */
fun roundingContext(provider: String, roundingId: String, init: RoundingContextBuilder.() -> Unit = {}): RoundingContext =
    RoundingContextBuilder
        .of(provider, roundingId)
        .apply(init)
        .build()

/**
 * @see RoundingContextBuilder.of
 */
fun roundingContext(roundingContext: RoundingContext, init: RoundingContextBuilder.() -> Unit = {}): RoundingContext =
    RoundingContextBuilder
        .of(roundingContext)
        .apply(init)
        .build()




© 2015 - 2025 Weber Informatics LLC | Privacy Policy