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

jvmMain.community.flock.wirespec.integration.jackson.common.Utils.kt Maven / Gradle / Ivy

package community.flock.wirespec.integration.jackson.common

import community.flock.wirespec.compiler.core.emit.common.Keywords

fun translater(reserved: Keywords): String.() -> String = {
    val keywords = reserved.reservedKeywords.map { "_$it" }
    if (this in keywords) drop(1) else this
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy