GeninterpInterpretation functions for generic arguments and interpreted Ltac values.
module Val : sig ... endDynamic types for toplevel values. While the generic types permit to relate objects at various levels of interpretation, toplevel values are wearing their own type regardless of where they came from. This allows to use the same runtime representation for several generic types.
val val_tag : 'a Genarg.typed_abstract_argument_type -> 'a Val.tagRetrieve the dynamic type associated to a toplevel genarg.
val register_val0 : ('raw, 'glb, 'top) Genarg.genarg_type -> 'top Val.tag option -> unitRegister the representation of a generic argument. If no tag is given as argument, a new fresh tag with the same name as the argument is associated to the generic type.
type ('glb, 'top) interp_fun = interp_sign -> 'glb -> 'top Ftactic.tval interp : ('raw, 'glb, 'top) Genarg.genarg_type -> ('glb, Val.t) interp_funval generic_interp : (Genarg.glob_generic_argument, Val.t) interp_funval register_interp0 : ('raw, 'glb, 'top) Genarg.genarg_type -> ('glb, Val.t) interp_fun -> unit