reset

suspend fun reset(path: Path = AbsolutePath.ROOT)(source)
suspend fun reset(path: String)(source)

Resets the values at path to their initial value.

If the path has a trailing non-recursive wildcard, then all existing children of its parent value will have their value reset. E.g. assume that the list [1, 2, 3] exists at "/list" and that the schema of "/list/∗" has an initial value of 0; resetting "/list/∗" will thus cause "/list" to end up with [0, 0, 0].

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

Throws

If path matches no schema paths.