summaryrefslogtreecommitdiff
path: root/tree.sig
diff options
context:
space:
mode:
authorVladimir Azarov <avm@intermediate-node.net>2025-06-04 20:45:08 +0200
committerVladimir Azarov <avm@intermediate-node.net>2025-06-04 20:45:08 +0200
commit9ccb3fce8e390f09fa5b812a77f7a65c10c5e4b1 (patch)
treebdbbce79c18fdb2e68592ed828f43da0b03ecf8f /tree.sig
parent546a5861526192a908f2aa2bfc3cfe4f3f3baf43 (diff)
Registration of declarations
Diffstat (limited to 'tree.sig')
-rw-r--r--tree.sig2
1 files changed, 1 insertions, 1 deletions
diff --git a/tree.sig b/tree.sig
index a1ebf86..e06ca68 100644
--- a/tree.sig
+++ b/tree.sig
@@ -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