package coq-core
- Overview
- No Docs
You can search for identifiers within the package.
in-package search v0.2.0
Install
    
    dune-project
 Dependency
Authors
Maintainers
Sources
md5=64b49dbc3205477bd7517642c0b9cbb6
    
    
  sha512=02fb5b4fb575af79e092492cbec6dc0d15a1d74a07f827f657a72d4e6066532630e5a6d15be4acdb73314bd40b9a321f9ea0584e0ccfe51fd3a56353bd30db9b
    
    
  doc/coq-core.interp/Constrextern/index.html
Module ConstrexternSource
Translation of pattern, cases pattern, glob_constr and term into syntax trees for printing
val extern_cases_pattern : 
  Names.Id.Set.t ->
  'a Glob_term.cases_pattern_g ->
  Constrexpr.cases_pattern_exprval extern_glob_type : 
  ?impargs:Glob_term.binding_kind list ->
  extern_env ->
  'a Glob_term.glob_constr_g ->
  Constrexpr.constr_exprval extern_constr_pattern : 
  Termops.names_context ->
  Evd.evar_map ->
  _ Pattern.constr_pattern_r ->
  Constrexpr.constr_exprval extern_closed_glob : 
  ?goal_concl_style:bool ->
  ?inctx:bool ->
  ?scope:Notation_term.scope_name ->
  Environ.env ->
  Evd.evar_map ->
  Ltac_pretype.closed_glob_constr ->
  Constrexpr.constr_exprIf b=true in extern_constr b env c then the variables in the first level of quantification clashing with the variables in env are renamed. ~lax is for debug printing, when the constr might not be well typed in env, sigma
val extern_constr : 
  ?inctx:bool ->
  ?scope:Notation_term.scope_name ->
  Environ.env ->
  Evd.evar_map ->
  EConstr.constr ->
  Constrexpr.constr_exprval extern_constr_in_scope : 
  ?inctx:bool ->
  Notation_term.scope_name ->
  Environ.env ->
  Evd.evar_map ->
  EConstr.constr ->
  Constrexpr.constr_exprval extern_type : 
  ?goal_concl_style:bool ->
  Environ.env ->
  Evd.evar_map ->
  ?impargs:Glob_term.binding_kind list ->
  EConstr.types ->
  Constrexpr.constr_exprval extern_rel_context : 
  EConstr.constr option ->
  Environ.env ->
  Evd.evar_map ->
  EConstr.rel_context ->
  Constrexpr.local_binder_expr listval set_extern_reference : 
  (?loc:Loc.t -> Names.Id.Set.t -> Names.GlobRef.t -> Libnames.qualid) ->
  unitCustomization of the global_reference printer
val get_extern_reference : 
  unit ->
  ?loc:Loc.t ->
  Names.Id.Set.t ->
  Names.GlobRef.t ->
  Libnames.qualidWARNING: The following functions are evil due to side-effects. Think of the following case as used in the printer:
without_specific_symbols AbbrevRule kn (pr_glob_constr_env env) c
vs
without_specific_symbols AbbrevRule kn pr_glob_constr_env env c
which one is wrong? We should turn this kind of state into an explicit argument.
This forces printing universe names of Type{.}
This suppresses printing of primitive tokens and notations
This prints metas as anonymous holes
Probably shouldn't be used