aboutsummaryrefslogtreecommitdiff
path: root/src/tree/splay.mli
diff options
context:
space:
mode:
authorSébastien Dailly <sebastien@chimrod.com>2018-07-29 19:01:24 +0200
committerSébastien Dailly <sebastien@chimrod.com>2018-07-29 19:01:24 +0200
commita0ea857685804735d60f19a166274745d8785e62 (patch)
treed0be2c5809d17a9afaf3af255f51a8ce7bc2fdaf /src/tree/splay.mli
parent2d52075c1d0f1b893d16f3e567fed5bc1e520be7 (diff)
Update the traversing sheet function
Diffstat (limited to 'src/tree/splay.mli')
-rwxr-xr-xsrc/tree/splay.mli5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/tree/splay.mli b/src/tree/splay.mli
index a640075..60d067b 100755
--- a/src/tree/splay.mli
+++ b/src/tree/splay.mli
@@ -48,6 +48,11 @@ module Make (El : KEY) : sig
val fold: ('a -> container -> 'a) -> 'a -> t -> 'a
+ (** Return one element of the given tree, or raise Not_found if the tree is
+ empty. Which element is chosen is unspecified, but equal elements will be
+ chosen for equal trees. *)
+ val choose: t -> container
+
(** Represent the content in dot syntax *)
val repr: Format.formatter -> t -> unit