abstract operator fun set(key: String, value: Any?): Unit
Since
1.0
Sets value as the element at key key.
if JsonArray, key works as an index.
abstract operator fun set(index: Int, value: Any?): Unit
Since
1.0
Sets value as the element at index index.
if JsonObject, index works as a property key.