diff options
author | Daniil Baturin <daniil@baturin.org> | 2015-09-21 05:51:50 +0600 |
---|---|---|
committer | Daniil Baturin <daniil@baturin.org> | 2015-09-21 05:51:50 +0600 |
commit | b367aa82bd2c11e312f0b0216ac369ed51d96bc7 (patch) | |
tree | 95cd2bb504db4821461a5a153a09352d8282223a /src | |
parent | 43e6af32a84af4f85bd536990d0afa430eaf8311 (diff) | |
download | vyconf-b367aa82bd2c11e312f0b0216ac369ed51d96bc7.tar.gz vyconf-b367aa82bd2c11e312f0b0216ac369ed51d96bc7.zip |
Expose multilevel insert in the Vytree module signature.
Diffstat (limited to 'src')
-rw-r--r-- | src/vytree.mli | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/vytree.mli b/src/vytree.mli index 6a7eda1..34692fd 100644 --- a/src/vytree.mli +++ b/src/vytree.mli @@ -21,6 +21,8 @@ val find_or_fail : 'a t -> string -> 'a t val insert : ?position:position -> 'a t -> string list -> 'a -> 'a t +val insert_multi_level : 'a -> 'a t -> string list -> 'a -> 'a t + val delete : 'a t -> string list -> 'a t val update : 'a t -> string list -> 'a -> 'a t |