Module Tjr_btree_examples.Make_1

Construct an example API, using lwt, bin_prot and bigarray and a write-back cache

val make_constants : k_size:int -> v_size:int -> Isa_btree.Constants.constants

Use this to construct constants for S if necessary

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

Int->int example

module S_int_int : sig ... end

k,v are both int

module type INT_INT_EX = T with type k = int and type v = int and type t = Tjr_monad.With_lwt.lwt