ocaml-standard-library/lib/tree.mli

4 lines
164 B
OCaml
Raw Normal View History

2021-12-16 10:01:08 +00:00
open Types
(* Combines two trees of the same type, with the specified value at the new top node. Runs in O(1). *)
val combine : 'a tree -> 'a tree -> 'a -> 'a tree