Further optimisations, changed the prototype of Tree.mli
[SXSI/xpathcomp.git] / memoizer.mli
1 module Make (H : Hashtbl.S) :
2 sig
3   val make : (H.key -> 'a) -> H.key -> 'a
4   val make_rec : ((H.key -> 'a) -> H.key -> 'a) -> H.key -> 'a
5 end