commonMain.kotlinx.serialization.json.internal.JsonStringBuilder.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kotlinx-serialization-json
Show all versions of kotlinx-serialization-json
Kotlin multiplatform serialization runtime library
package kotlinx.serialization.json.internal
internal expect class JsonStringBuilder constructor() {
fun append(value: Long)
fun append(ch: Char)
fun append(string: String)
fun appendQuoted(string: String)
override fun toString(): String
fun release()
}