diff options
author | Vladimir Azarov <avm@intermediate-node.net> | 2025-06-04 20:45:08 +0200 |
---|---|---|
committer | Vladimir Azarov <avm@intermediate-node.net> | 2025-06-04 20:45:08 +0200 |
commit | 9ccb3fce8e390f09fa5b812a77f7a65c10c5e4b1 (patch) | |
tree | bdbbce79c18fdb2e68592ed828f43da0b03ecf8f /tree.sig | |
parent | 546a5861526192a908f2aa2bfc3cfe4f3f3baf43 (diff) |
Registration of declarations
Diffstat (limited to 'tree.sig')
-rw-r--r-- | tree.sig | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -11,7 +11,7 @@ signature TREE = sig val lookup: 'k cmp -> ('k, 'v) t -> 'k -> 'v option val lookup2: 'k cmp -> ('k, 'v) t -> 'k -> - ('v -> 'v option * 'a) * 'a -> 'a * ('k, 'v) t + ('v option -> 'a * 'v option) -> 'a * ('k, 'v) t val print: ('k, 'v) t -> ('k -> string) -> ('v -> string) -> unit end |