commonMain.net.codinux.i18n.formatter.NumberFormatPattern.kt Maven / Gradle / Ivy
Go to download
Localizing language, country, unit and currency names and formatting numbers and dates for Kotlin Multiplatform with the data from Unicode CLDR project
The newest version!
package net.codinux.i18n.formatter
data class NumberFormatPattern(
val pattern: String,
val minimumIntegerDigits: Int = 0,
val minimumFractionDigits: Int = 0,
val maximumFractionDigits: Int = Int.MAX_VALUE,
val groupSize: Int = 0,
val stringBeforeIntegerPart: String = "",
val stringAfterIntegerPart: String = "",
val stringBeforeFractionPart: String = "",
val stringAfterFractionPart: String = "",
)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy