package archetype

  1. Overview
  2. Docs
module type Item = sig ... end
module type Data = sig ... end
module type S = sig ... end
module Make (I : Item) (D : Data) : S with type item = I.t and type data = D.data and type effects = D.effects
module type US = sig ... end
module UMake (I : Item) : US with type item = I.t
OCaml

Innovation. Community. Security.