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

commonMain.com.copperleaf.json.pointer.JsonPointerAction.kt Maven / Gradle / Ivy

There is a newer version: 0.7.0
Show newest version
package com.copperleaf.json.pointer

public sealed interface JsonPointerAction {
    public data class SetValue(val value: Any?) : JsonPointerAction
    public object RemoveValue : JsonPointerAction
    public data class SwapArrayIndices(val to: Int) : JsonPointerAction
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy