set

suspend fun set(path: Path = AbsolutePath.ROOT, toSet: Any?)(source)
suspend fun set(path: String, toSet: Any?)(source)

Sets values at path with toSet.

If the path has a trailing non-recursive wildcard, then all existing children of its parent value are set to toSet. E.g. assume that the list [1, 2, 3] exists at "/list"; setting the value 5 at "/list/∗" will cause "/list" to end up with [5, 5, 5].

Setting a value on a path with a trailing recursive wildcard is considered equivalent to setting the value on said path without such wildcard. E.g. setting the value at "/x/∗∗" is equivalent to setting the same value at "/x".

Throws

If path matches no schema paths.