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

main.ch.difty.kris.InternalExtensions.kt Maven / Gradle / Ivy

There is a newer version: 0.5.3
Show newest version
package ch.difty.kris

internal fun String.truncatedTo(maxLength: Int?): String = when {
    maxLength != null -> substring(0, kotlin.math.min(maxLength, length))
    else -> this
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy