]> matita.cs.unibo.it Git - helm.git/blob - matita/matita/contribs/lambdadelta/bin/roles/rolesUtils.mli
update in binaries for λδ
[helm.git] / matita / matita / contribs / lambdadelta / bin / roles / rolesUtils.mli
1 (*
2     ||M||  This file is part of HELM, an Hypertextual, Electronic
3     ||A||  Library of Mathematics, developed at the Computer Science
4     ||T||  Department, University of Bologna, Italy.
5     ||I||
6     ||T||  HELM is free software; you can redistribute it and/or
7     ||A||  modify it under the terms of the GNU General Public License
8     \   /  version 2 or (at your option) any later version.
9      \ /   This software is distributed as is, NO WARRANTY.
10       V_______________________________________________________________ *)
11
12 val raise_error: RolesTypes.error -> 'a
13
14 val list_nth: int -> ('a * 'b) list -> 'b
15
16 val list_toggle: int -> (bool * 'b) list -> (bool * 'b) list
17
18 val list_toggle_all: (bool * 'b) list -> (bool * 'b) list
19
20 val list_split: (bool * 'b) list -> (bool * 'b) list * (bool * 'b) list
21
22 val list_select: 'b option -> (bool * 'b) list -> 'b option
23
24 val list_visit:
25   (string -> string -> unit) -> (string -> bool -> string -> unit) ->
26   (RolesTypes.pointer -> 'a -> unit) -> (unit -> unit) ->
27   ('a -> string) -> RolesTypes.pointer -> (bool * 'a) list -> unit
28
29 val string_of_version: RolesTypes.version -> string
30
31 val version_of_string: string -> RolesTypes.version
32
33 val string_of_name: RolesTypes.name -> string
34
35 val name_of_string: string -> RolesTypes.name
36
37 val names_union: RolesTypes.names -> RolesTypes.names -> RolesTypes.names
38
39 val string_of_obj: RolesTypes.obj -> string
40
41 val obj_of_string: string -> RolesTypes.obj
42
43 val objs_union: RolesTypes.objs -> RolesTypes.objs -> RolesTypes.objs
44
45 val string_of_role: RolesTypes.role -> string
46
47 val roles_union: RolesTypes.roles -> RolesTypes.roles -> RolesTypes.roles
48
49 val exists_role_deleted: RolesTypes.version -> RolesTypes.roles -> bool
50
51 val get_tops: RolesTypes.version -> RolesTypes.roles -> RolesTypes.objs * RolesTypes.objs
52
53 val match_names: int -> int -> RolesTypes.objs -> RolesTypes.names -> (int * int) option
54
55 val new_status: RolesTypes.status
56
57 val string_of_pointer: RolesTypes.pointer -> string
58
59 val pointer_of_string: string -> RolesTypes.pointer
60
61 val string_of_error: RolesTypes.error -> string