Module Tjr_btree.Make_1

Main functionality: disk to map

module type S = sig ... end

This interface should be equal to Isa_btree_intf.S. Duplicated here so that ocamldoc can exhibit the definition.

module type T = sig ... end
module Make : functor (S : S) -> T with type k = S.k and type v = S.v and type r = S.r and type t = S.t

The basic Make functor, with most things parameterizable. See also the more refined Tjr_btree_examples.Make_example functor.