module Binary_search_tree:sig
..end
module type BSTPassThruFields =sig
..end
module type InputBST =sig
..end
module type BST =sig
..end
module Make:
module BinarySearchTree:
type
t =
| |
Empty |
||||||
| |
Node of |
val empty_tree : t
val left : t ->
t
val right : t ->
t
val value : t -> Ord.t
val insert : t ->
Ord.t -> t
end
)