loc 0.5.0

Count lines of code (cloc) fast.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
(***************************************

 Binary Search Trees

***************************************)

(* insert delete inorder search min max *)

type 'a binary_tree =
  (* A root node and a left and right sub tree *)
  Node of 'a * 'a binary_tree * 'a binary_tree
  (* Empty leaf *)
  | Leaf