package doc-ock

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
module Field : sig ... end
module Constructor : sig ... end
module Representation : sig ... end
type variance =
  1. | Pos
  2. | Neg
type param_desc =
  1. | Any
  2. | Var of string
type param = param_desc * variance option
module Equation : sig ... end
type 'a t = {
  1. id : 'a DocOckPaths.Identifier.type_;
  2. doc : 'a Documentation.t;
  3. equation : 'a Equation.t;
  4. representation : 'a Representation.t option;
}