package coq

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type 'a hint_info_gen = {
  1. hint_priority : int option;
  2. hint_pattern : 'a option;
}
type class_method = {
  1. meth_name : Names.Name.t;
  2. meth_info : hint_info option;
  3. meth_const : Names.Constant.t option;
}
type typeclass = {
  1. cl_univs : Univ.AbstractContext.t;
    (*

    The toplevel universe quantification in which the typeclass lives. In particular, cl_props and cl_context are quantified over it.

    *)
  2. cl_impl : Names.GlobRef.t;
    (*

    The class implementation: a record parameterized by the context with defs in it or a definition if the class is a singleton. This acts as the class' global identifier.

    *)
  3. cl_context : Constr.rel_context;
    (*

    Context in which the definitions are typed. Includes both typeclass parameters and superclasses.

    *)
  4. cl_props : Constr.rel_context;
    (*

    Context of definitions and properties on defs, will not be shared

    *)
  5. cl_projs : class_method list;
    (*

    The methods implementations of the typeclass as projections. Some may be undefinable due to sorting restrictions or simply undefined if no name is provided. The int option option indicates subclasses whose hint has the given priority.

    *)
  6. cl_strict : bool;
    (*

    Whether we use matching or full unification during resolution

    *)
  7. cl_unique : bool;
    (*

    Whether we can assume that instances are unique, which allows no backtracking and sharing of resolution.

    *)
}

This module defines type-classes

type instance = {
  1. is_class : Names.GlobRef.t;
  2. is_info : hint_info;
  3. is_impl : Names.GlobRef.t;
}
val instances : Environ.env -> Evd.evar_map -> Names.GlobRef.t -> instance list
val typeclasses : unit -> typeclass list
val all_instances : unit -> instance list
val load_class : typeclass -> unit
val load_instance : instance -> unit
val remove_instance : instance -> unit

raises a UserError if not a class

These raise a UserError if not a class. Caution: the typeclass structures is not instantiated w.r.t. the universe instance. This is done separately by typeclass_univ_instance.

val typeclass_univ_instance : typeclass Univ.puniverses -> typeclass

Get the instantiated typeclass structure for a given universe instance.

Just return None if not a class

val instance_impl : instance -> Names.GlobRef.t
val hint_priority : instance -> int option
val is_class : Names.GlobRef.t -> bool

Returns the term and type for the given instance of the parameters and fields of the type class.

val instance_constructor : typeclass EConstr.puniverses -> EConstr.t list -> EConstr.t option * EConstr.t
type evar_filter = Evar.t -> Evar_kinds.t Lazy.t -> bool

Filter which evars to consider for resolution.

val all_evars : evar_filter
val all_goals : evar_filter
val no_goals : evar_filter
val no_goals_or_obligations : evar_filter

Resolvability. Only undefined evars can be marked or checked for resolvability. They represent type-class search roots.

A resolvable evar is an evar the type-class engine may try to solve An unresolvable evar is an evar the type-class engine will NOT try to solve

val make_unresolvables : (Evar.t -> bool) -> Evd.evar_map -> Evd.evar_map
val is_class_evar : Evd.evar_map -> Evd.evar_info -> bool
val is_class_type : Evd.evar_map -> EConstr.types -> bool
val resolve_typeclasses : ?filter:evar_filter -> ?unique:bool -> ?split:bool -> ?fail:bool -> Environ.env -> Evd.evar_map -> Evd.evar_map
val resolve_one_typeclass : ?unique:bool -> Environ.env -> Evd.evar_map -> EConstr.types -> Evd.evar_map * EConstr.constr
val solve_all_instances_hook : (Environ.env -> Evd.evar_map -> evar_filter -> bool -> bool -> bool -> Evd.evar_map) Hook.t
val solve_one_instance_hook : (Environ.env -> Evd.evar_map -> EConstr.types -> bool -> Evd.evar_map * EConstr.constr) Hook.t