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

kotlin.text.Strings1.2.kt Maven / Gradle / Ivy

The newest version!
// Implement the new post-1.2 APIs which are used by core and serialization
@file:Suppress("unused")

package kotlin.text

inline fun String.replaceFirstChar(transform: (Char) -> CharSequence): String {
    return if (isNotEmpty()) transform(this[0]).toString() + substring(1) else this
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy