commonMain.com.eygraber.json.sugar.JsonArrayBuilder.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of json-sugar-jvm Show documentation
Show all versions of json-sugar-jvm Show documentation
Helper functions that make it easier to work with kotlinx Json
The newest version!
package com.eygraber.json.sugar
import kotlinx.serialization.json.JsonArrayBuilder
public inline fun JsonArrayBuilder.addJsonObject(builderAction: JsonSugarObjectBuilder.() -> Unit) {
add(buildJsonObject(builderAction))
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy