toLowerCase

@DeprecatedSinceKotlin(warningSince = "1.5")
expect fun Char.toLowerCase(): Char

Converts this character to lower case using Unicode mapping rules of the invariant locale.


@DeprecatedSinceKotlin(warningSince = "1.5")
expect fun String.toLowerCase(): String

Returns a copy of this string converted to lower case using the rules of the default locale.

@DeprecatedSinceKotlin(warningSince = "1.5")
inline fun String.toLowerCase(locale: Locale): String

Returns a copy of this string converted to lower case using the rules of the specified locale.


@DeprecatedSinceKotlin(warningSince = "1.5")
actual inline fun Char.toLowerCase(): Char

Converts this character to lower case using Unicode mapping rules of the invariant locale.


@DeprecatedSinceKotlin(warningSince = "1.5")
actual inline fun String.toLowerCase(): String

Returns a copy of this string converted to lower case using the rules of the default locale.

@DeprecatedSinceKotlin(warningSince = "1.5")
actual inline fun Char.toLowerCase(): Char

Converts this character to lower case using Unicode mapping rules of the invariant locale.


@DeprecatedSinceKotlin(warningSince = "1.5")
actual inline fun String.toLowerCase(): String

Returns a copy of this string converted to lower case using the rules of the default locale.

@DeprecatedSinceKotlin(warningSince = "1.5")
actual fun Char.toLowerCase(): Char

Converts this character to lower case using Unicode mapping rules of the invariant locale.


@DeprecatedSinceKotlin(warningSince = "1.5")
actual fun String.toLowerCase(): String

Returns a copy of this string converted to lower case using the rules of the default locale.