commonMain.io.islandtime.locale.Locale.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core-metadata Show documentation
Show all versions of core-metadata Show documentation
A multiplatform library for working with dates and times
The newest version!
package io.islandtime.locale
/**
* A locale.
*
* On the JVM, this maps to `java.util.Locale`. On Apple platforms, this maps to `NSLocale`.
*/
expect class Locale
/**
* Gets the current [Locale].
*
* On the JVM, the `Category` is not used in order to support older Android versions.
*/
expect fun defaultLocale(): Locale
/**
* Converts an IETF BCP 47 language tag, such as "en-US" or "de-DE", to a [Locale].
*/
expect fun String.toLocale(): Locale
© 2015 - 2025 Weber Informatics LLC | Privacy Policy