jon.recoil.org

Module Odoc_index.EntrySource

Sourcetype type_decl_entry = {
  1. canonical : Odoc_model.Paths.Path.Type.t option;
  2. equation : Odoc_model.Lang.TypeDecl.Equation.t;
  3. representation : Odoc_model.Lang.TypeDecl.Representation.t option;
}
Sourcetype class_type_entry = {
  1. virtual_ : bool;
  2. params : Odoc_model.Lang.TypeDecl.param list;
}
Sourcetype method_entry = {
  1. private_ : bool;
  2. virtual_ : bool;
  3. type_ : Odoc_model.Lang.TypeExpr.t;
}
Sourcetype class_entry = {
  1. virtual_ : bool;
  2. params : Odoc_model.Lang.TypeDecl.param list;
}
Sourcetype type_extension_entry = {
  1. type_path : Odoc_model.Paths.Path.Type.t;
  2. type_params : Odoc_model.Lang.TypeDecl.param list;
  3. private_ : bool;
}
Sourcetype field_entry = {
  1. mutable_ : bool;
  2. type_ : Odoc_model.Lang.TypeExpr.t;
  3. parent_type : Odoc_model.Lang.TypeExpr.t;
}
Sourcetype instance_variable_entry = {
  1. mutable_ : bool;
  2. virtual_ : bool;
  3. type_ : Odoc_model.Lang.TypeExpr.t;
}
Sourcetype module_entry = {
  1. has_expansion : bool;
}