blob: 336099a2ff83ccf9b44f4d54853fdb69c27bd90d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
(************************************************************************)
(* v * The Coq Proof Assistant / The Coq Development Team *)
(* <O___,, * CNRS-Ecole Polytechnique-INRIA Futurs-Universite Paris Sud *)
(* \VV/ **************************************************************)
(* // * This file is distributed under the terms of the *)
(* * GNU Lesser General Public License Version 2.1 *)
(************************************************************************)
(*i $Id$ i*)
open Names
(* Identifiers and names *)
val pr_id : identifier -> Pp.std_ppcmds
val pr_name : name -> Pp.std_ppcmds
val make_ident : string -> int option -> identifier
val repr_ident : identifier -> string * int option
val atompart_of_id : identifier -> string (* remove trailing digits *)
val root_of_id : identifier -> identifier (* remove trailing digits, $'$ and $\_$ *)
val add_suffix : identifier -> string -> identifier
val add_prefix : string -> identifier -> identifier
val lift_ident : identifier -> identifier
val next_ident_away : identifier -> identifier list -> identifier
val next_ident_away_from : identifier -> identifier list -> identifier
val next_name_away : name -> identifier list -> identifier
val next_name_away_with_default :
string -> name -> identifier list -> identifier
val out_name : name -> identifier
val name_fold : (identifier -> 'a -> 'a) -> name -> 'a -> 'a
val name_cons : name -> identifier list -> identifier list
val name_app : (identifier -> identifier) -> name -> name
val name_fold_map : ('a -> identifier -> 'a * identifier) -> 'a -> name -> 'a * name
val pr_lab : label -> Pp.std_ppcmds
(* some preset paths *)
val default_library : dir_path
(* This is the root of the standard library of Coq *)
val coq_root : module_ident
(* This is the default root prefix for developments which doesn't
mention a root *)
val default_root_prefix : dir_path
(* Metavariables *)
val pr_meta : Term.metavariable -> Pp.std_ppcmds
val string_of_meta : Term.metavariable -> string
|