Add 'len <expr>' operator.
[whenjobs.git] / lib / whenutils.mli
1 (* whenjobs
2  * Copyright (C) 2012 Red Hat Inc.
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17  *)
18
19 (** Types and utility functions. *)
20
21 module StringMap : sig
22   type key = String.t
23   type 'a t
24   val empty : 'a t
25   val is_empty : 'a t -> bool
26   val mem : key -> 'a t -> bool
27   val add : key -> 'a -> 'a t -> 'a t
28   (*val singleton : key -> 'a -> 'a t*)
29   val remove : key -> 'a t -> 'a t
30   (*val merge :
31     (key -> 'a option -> 'b option -> 'c option) -> 'a t -> 'b t -> 'c t*)
32   val compare : ('a -> 'a -> int) -> 'a t -> 'a t -> int
33   val equal : ('a -> 'a -> bool) -> 'a t -> 'a t -> bool
34   val iter : (key -> 'a -> unit) -> 'a t -> unit
35   val fold : (key -> 'a -> 'b -> 'b) -> 'a t -> 'b -> 'b
36   (*val for_all : (key -> 'a -> bool) -> 'a t -> bool
37   val exists : (key -> 'a -> bool) -> 'a t -> bool
38   val filter : (key -> 'a -> bool) -> 'a t -> 'a t
39   val partition : (key -> 'a -> bool) -> 'a t -> 'a t * 'a t
40   val cardinal : 'a t -> int
41   val bindings : 'a t -> (key * 'a) list
42   val min_binding : 'a t -> key * 'a
43   val max_binding : 'a t -> key * 'a
44   val choose : 'a t -> key * 'a
45   val split : key -> 'a t -> 'a t * 'a option * 'a t*)
46   val find : key -> 'a t -> 'a
47   val map : ('a -> 'b) -> 'a t -> 'b t
48   val mapi : (key -> 'a -> 'b) -> 'a t -> 'b t
49   val keys : 'a t -> key list
50   val values : 'a t -> 'a list
51 end
52 (** A map from string to any type. *)
53
54 module IntMap : sig
55   type key = int
56   type 'a t
57   val empty : 'a t
58   val is_empty : 'a t -> bool
59   val mem : key -> 'a t -> bool
60   val add : key -> 'a -> 'a t -> 'a t
61   (*val singleton : key -> 'a -> 'a t*)
62   val remove : key -> 'a t -> 'a t
63   (*val merge :
64     (key -> 'a option -> 'b option -> 'c option) -> 'a t -> 'b t -> 'c t*)
65   val compare : ('a -> 'a -> int) -> 'a t -> 'a t -> int
66   val equal : ('a -> 'a -> bool) -> 'a t -> 'a t -> bool
67   val iter : (key -> 'a -> unit) -> 'a t -> unit
68   val fold : (key -> 'a -> 'b -> 'b) -> 'a t -> 'b -> 'b
69   (*val for_all : (key -> 'a -> bool) -> 'a t -> bool
70   val exists : (key -> 'a -> bool) -> 'a t -> bool
71   val filter : (key -> 'a -> bool) -> 'a t -> 'a t
72   val partition : (key -> 'a -> bool) -> 'a t -> 'a t * 'a t
73   val cardinal : 'a t -> int
74   val bindings : 'a t -> (key * 'a) list
75   val min_binding : 'a t -> key * 'a
76   val max_binding : 'a t -> key * 'a
77   val choose : 'a t -> key * 'a
78   val split : key -> 'a t -> 'a t * 'a option * 'a t*)
79   val find : key -> 'a t -> 'a
80   val map : ('a -> 'b) -> 'a t -> 'b t
81   val mapi : (key -> 'a -> 'b) -> 'a t -> 'b t
82   val keys : 'a t -> key list
83   val values : 'a t -> 'a list
84 end
85 (** A map from int to any type. *)
86
87 module StringSet : sig
88   type elt = String.t
89   type t = Set.Make(String).t
90   val empty : t
91   val is_empty : t -> bool
92   val mem : elt -> t -> bool
93   val add : elt -> t -> t
94   val singleton : elt -> t
95   val remove : elt -> t -> t
96   val union : t -> t -> t
97   val inter : t -> t -> t
98   val diff : t -> t -> t
99   val compare : t -> t -> int
100   val equal : t -> t -> bool
101   val subset : t -> t -> bool
102   val iter : (elt -> unit) -> t -> unit
103   val fold : (elt -> 'a -> 'a) -> t -> 'a -> 'a
104   val for_all : (elt -> bool) -> t -> bool
105   val exists : (elt -> bool) -> t -> bool
106   val filter : (elt -> bool) -> t -> t
107   val partition : (elt -> bool) -> t -> t * t
108   val cardinal : t -> int
109   val elements : t -> elt list
110   val min_elt : t -> elt
111   val max_elt : t -> elt
112   val choose : t -> elt
113   val split : elt -> t -> t * bool * t
114 end
115 (** A set of strings. *)
116
117 val (//) : string -> string -> string
118 (** [dir // file] concatenates directory and file. *)
119
120 val isalpha : char -> bool
121 val isalnum : char -> bool
122 (** Character tests. *)
123
124 val filter_map : ('a -> 'b option) -> 'a list -> 'b list
125 (** Filter + map. *)