package doc-ock

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type kind =
  1. | Fixed
  2. | Closed of string list
  3. | Open
type 'a element =
  1. | Type of 'a TypeExpr.t
  2. | Constructor of string * bool * 'a TypeExpr.t list
type 'a t = {
  1. kind : kind;
  2. elements : 'a element list;
}