jvmMain.Locale.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kord-common-jvm Show documentation
Show all versions of kord-common-jvm Show documentation
Idiomatic Kotlin Wrapper for The Discord API
The newest version!
package dev.kord.common
/**
* Converts this [dev.kord.common.Locale] into a [java.util.Locale].
*/
public fun Locale.asJavaLocale(): java.util.Locale = java.util.Locale(language, country ?: "")
/**
* Converts this [java.util.Locale] into a [dev.kord.common.Locale].
*/
public val java.util.Locale.kLocale: Locale get() = Locale(language, country.ifBlank { null })