3 lines
75 B
OCaml
3 lines
75 B
OCaml
(* bstree with records *)
|
|
type 'a t = L | N of {v: 'a; l: 'a t; r: 'a t};;
|
(* bstree with records *)
|
|
type 'a t = L | N of {v: 'a; l: 'a t; r: 'a t};;
|