PrimNotationstype rawnum = NumTok.Signed.tThe unique id string below will be used to refer to a particular registered interpreter/uninterpreter of number or string notation. Using the same uid for different (un)interpreters will fail. If at most one interpretation of prim token is used per scope, then the scope name could be used as unique id.
type 'a prim_token_interpreter = ?loc:Loc.t -> 'a -> Glob_term.glob_constrtype 'a prim_token_uninterpreter = Glob_term.any_glob_constr -> 'a optiontype 'a prim_token_interpretation = 'a prim_token_interpreter * 'a prim_token_uninterpreterval register_rawnumeral_interpretation : ?allow_overwrite:bool -> string -> rawnum prim_token_interpretation -> prim_token_uidval register_bignumeral_interpretation : ?allow_overwrite:bool -> string -> Z.t prim_token_interpretation -> prim_token_uidval register_string_interpretation : ?allow_overwrite:bool -> string -> string prim_token_interpretation -> prim_token_uid* Number notation
exception PrimTokenNotationError of string * Environ.env * Evd.evar_map * prim_token_notation_errortype int_ty = {dec_uint : Names.inductive; |
dec_int : Names.inductive; |
hex_uint : Names.inductive; |
hex_int : Names.inductive; |
uint : Names.inductive; |
int : Names.inductive; |
}type number_ty = {int : int_ty; |
decimal : Names.inductive; |
hexadecimal : Names.inductive; |
number : Names.inductive; |
}type target_kind = | Int of int_ty |
| UInt of int_ty |
| Z of z_pos_ty |
| Int63 of pos_neg_int63_ty |
| Float64 |
| Number of number_ty |
type 'target conversion_kind = 'target * option_kindA postprocessing translation to_post can be done after execution of the to_ty interpreter. The reverse translation is performed before the of_ty uninterpreter.
to_post is an array of n lists l_i of tuples (f, t,
args). When the head symbol of the translated term matches one of the f in the list l_0 it is replaced by t and its arguments are translated acording to args where ToPostCopy means that the argument is kept unchanged and ToPostAs k means that the argument is recursively translated according to l_k. ToPostHole introduces an additional implicit argument hole (in the reverse translation, the corresponding argument is removed). ToPostCheck r behaves as ToPostCopy except in the reverse translation which fails if the copied term is not r. When n is null, no translation is performed.
type ('target, 'warning) prim_token_notation_obj = {to_kind : 'target conversion_kind; |
to_ty : Names.GlobRef.t; |
to_post : (Names.GlobRef.t * Names.GlobRef.t * to_post_arg list) list array; |
of_kind : 'target conversion_kind; |
of_ty : Names.GlobRef.t; |
ty_name : Libnames.qualid; |
warning : 'warning; |
}type number_notation_obj = (target_kind, numnot_option) prim_token_notation_objtype string_notation_obj = (string_target_kind, unit) prim_token_notation_objtype prim_token_interp_info = | Uid of prim_token_uid |
| NumberNotation of number_notation_obj |
| StringNotation of string_notation_obj |
val do_interp : ?loc:Loc.t -> prim_token_interp_info -> Constrexpr.prim_token -> Glob_term.glob_constrval do_uninterp : print_float:bool -> prim_token_interp_info -> _ Glob_term.glob_constr_g -> Constrexpr.prim_token optionval can_interp : prim_token_interp_info -> Constrexpr.prim_token -> boolval int63_of_pos_bigint : Z.t -> Uint63.tConversion from bigint to int63