package odoc

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type expr =
  1. | Path of Paths.Path.ModuleType.t
  2. | Signature of Signature.t
  3. | Functor of FunctorParameter.t * expr
  4. | With of expr * substitution list
  5. | TypeOf of Module.decl
type t = {
  1. id : Paths.Identifier.ModuleType.t;
  2. doc : Comment.docs;
  3. expr : expr option;
  4. expansion : Module.expansion option;
}