package odoc

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type expr =
  1. | Constr of Paths.Path.ClassType.t * TypeExpr.t list
  2. | Signature of ClassSignature.t
type t = {
  1. id : Paths.Identifier.ClassType.t;
  2. doc : Comment.docs;
  3. virtual_ : bool;
  4. params : TypeDecl.param list;
  5. expr : expr;
  6. expansion : ClassSignature.t option;
}