package coq-lsp

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type 'a hyp = {
  1. names : string list;
    (*

    This will become Names.Id.t list in 0.2.0

    *)
  2. def : 'a option;
  3. ty : 'a;
}
type info = {
  1. evar : Evar.t;
  2. name : Names.Id.t option;
}
type 'a t = {
  1. info : info;
  2. hyps : 'a hyp list;
  3. ty : 'a;
}
val map : f:('a -> 'b) -> 'a t -> 'b t
val equal : ('a -> 'a -> bool) -> 'a t -> 'a t -> bool
OCaml

Innovation. Community. Security.