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

se.ansman.dagger.auto.compiler.common.Strings.kt Maven / Gradle / Ivy

The newest version!
package se.ansman.dagger.auto.compiler.common

fun StringBuilder.deleteSuffix(suffix: CharSequence) {
    if (endsWith(suffix)) {
        delete(length - suffix.length, length)
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy