Module Globnames
type global_reference= Names.GlobRef.t=|VarRef of Names.variable|ConstRef of Names.Constant.t|IndRef of Names.inductive|ConstructRef of Names.constructor
val isVarRef : Names.GlobRef.t -> boolval isConstRef : Names.GlobRef.t -> boolval isIndRef : Names.GlobRef.t -> boolval isConstructRef : 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_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
Extended global references
type syndef_name= Names.KerName.ttype extended_global_reference=|TrueGlobal of Names.GlobRef.t|SynDef of syndef_name
module ExtRefOrdered : sig ... endmodule ExtRefSet : CSig.SetS with type elt = extended_global_referenceval subst_extended_reference : Mod_subst.substitution -> extended_global_reference -> extended_global_reference