package merlin-lib

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type 'desc raw_entry = {
  1. name : string;
  2. kind : [ `Value | `Constructor | `Variant | `Label | `Module | `Modtype | `Type | `MethodCall | `Keyword ];
  3. desc : 'desc;
  4. info : 'desc;
  5. deprecated : bool;
}
type entry = string raw_entry
type application_context = {
  1. argument_type : string;
  2. labels : (string * string) list;
}
type t = {
  1. entries : entry list;
  2. context : [ `Unknown | `Application of application_context ];
}
type kind = [
  1. | `Constructor
  2. | `Labels
  3. | `Modules
  4. | `Modules_type
  5. | `Types
  6. | `Values
  7. | `Variants
  8. | `Keywords
]