Module Globnames
type global_reference= Names.GlobRef.t=|VarRef of Names.variableA reference to the section-context.
|ConstRef of Names.Constant.tA reference to the environment.
|IndRef of Names.inductiveA reference to an inductive type.
|ConstructRef of Names.constructorA reference to a constructor of an inductive type.
Global reference is a kernel side type for all references together
val isVarRef : Names.GlobRef.t -> boolval isConstRef : Names.GlobRef.t -> boolval isIndRef : Names.GlobRef.t -> boolval isConstructRef : Names.GlobRef.t -> boolval eq_gr : Names.GlobRef.t -> Names.GlobRef.t -> boolval canonical_gr : Names.GlobRef.t -> Names.GlobRef.tval destVarRef : Names.GlobRef.t -> Names.variableval destConstRef : Names.GlobRef.t -> Names.Constant.tval destIndRef : Names.GlobRef.t -> Names.inductiveval destConstructRef : Names.GlobRef.t -> Names.constructorval is_global : Names.GlobRef.t -> Constr.constr -> boolval subst_constructor : Mod_subst.substitution -> Names.constructor -> Names.constructorval subst_global : Mod_subst.substitution -> Names.GlobRef.t -> Names.GlobRef.t * Constr.constr Univ.univ_abstracted optionval subst_global_reference : Mod_subst.substitution -> Names.GlobRef.t -> Names.GlobRef.tval printable_constr_of_global : Names.GlobRef.t -> Constr.constrThis constr is not safe to be typechecked, universe polymorphism is not handled here: just use for printing
val global_of_constr : Constr.constr -> Names.GlobRef.tTurn a construction denoting a global reference into a global reference; raise
Not_foundif not a global reference
module RefOrdered = Names.GlobRef.Orderedmodule RefOrdered_env = Names.GlobRef.Ordered_envmodule Refset = Names.GlobRef.Setmodule Refmap = Names.GlobRef.Mapmodule Refset_env = Names.GlobRef.Set_envmodule Refmap_env = Names.GlobRef.Map_envExtended global references
type syndef_name= Names.KerName.ttype extended_global_reference=|TrueGlobal of Names.GlobRef.t|SynDef of syndef_name
module ExtRefOrdered : sig ... endtype global_reference_or_constr=|IsGlobal of Names.GlobRef.t|IsConstr of Constr.constr