![JAR search and dependency download from the Maven repository](/logo.png)
kotlin.text.StringBuilder1.2.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of corda-core-1.2 Show documentation
Show all versions of corda-core-1.2 Show documentation
Corda core built with Kotlin 1.2
// Implement the new post-1.2 APIs which are used by core and serialization
@file:Suppress("NOTHING_TO_INLINE", "unused")
package kotlin.text
// StringBuilder
fun StringBuilder.append(vararg value: String?): StringBuilder {
for (item in value)
append(item)
return this
}
inline fun StringBuilder.appendLine(): StringBuilder = append('\n')
inline fun StringBuilder.appendLine(value: String?): StringBuilder = append(value).appendLine()
© 2015 - 2025 Weber Informatics LLC | Privacy Policy