Module Tjr_binary_search

type 'e elt_ops = {
compare : 'e -> 'e -> int;
}
type ('e, 't) array_ops = {
get : 't -> int -> 'e;
length : 't -> int;
}
module type Test = sig ... end