File: cf_set.mli

package info (click to toggle)
pagodacf 0.10-1
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 1,204 kB
  • ctags: 2,320
  • sloc: ml: 8,458; ansic: 3,338; makefile: 171; sh: 27
file content (225 lines) | stat: -rw-r--r-- 8,902 bytes parent folder | download | duplicates (7)
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
(*---------------------------------------------------------------------------*
  INTERFACE  cf_set.mli

  Copyright (c) 2004-2006, James H. Woodyatt
  All rights reserved.

  Redistribution and use in source and binary forms, with or without
  modification, are permitted provided that the following conditions
  are met:

    Redistributions of source code must retain the above copyright
    notice, this list of conditions and the following disclaimer.

    Redistributions in binary form must reproduce the above copyright
    notice, this list of conditions and the following disclaimer in
    the documentation and/or other materials provided with the
    distribution

  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
  FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
  COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
  INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
  OF THE POSSIBILITY OF SUCH DAMAGE. 
 *---------------------------------------------------------------------------*)

(** A module type for functional set implementations (with enhancements over
    the {!Set} module in the standard library).
*)

(** {6 Overview}

    This module defines the common interface to the various implementations of
    functional sets in the {!Cf} library.
*)

module type T = sig
    
    (** The set type *)
    type t

    (** A module defining the type of the element.  Some set implementations
        may define more functions in this module for disambiguating keys from
        one another.
    *)
    module Element: sig type t end
    
    (** The empty set. *)
    val nil: t
    
    (** Use [empty s] to test whether the set [s] is the empty set. *)
    val empty: t -> bool
    
    (** Use [size s] to compute the size of the set [s]. *)
    val size: t -> int
    
    (** Use [member e s] to test whether the element [e] is a member of the set
        [s].
    *)
    val member: Element.t -> t -> bool
    
    (** Use [singleton e] to compose a new set containing only the element [e].
    *)
    val singleton: Element.t -> t
    
    (** Use [min s] to return the ordinally least element in the set [s].
        Raises [Not_found] if the set is empty.
    *)
    val min: t -> Element.t
    
    (** Use [min s] to return the ordinally greatest element in the set [s].
        Raises [Not_found] if the set is empty.
    *)
    val max: t -> Element.t
    
    (** Use [put e s] to obtain a new set produced by inserting the element [e]
        into the set [s].  If [s] already contains a member ordinally equal to
        [e] then it is replaced by [e] in the set returned.
    *)
    val put: Element.t -> t -> t
    
    (** Use [clear e s] to obtain a new set produced by deleting the element
        in the set [s] ordinally equal to the element [e].  If there is no such
        element in the set, then the set is returned unchanged.
    *)
    val clear: Element.t -> t -> t
    
    (** Use [union s1 s2] to obtain a new set from the union of the sets [s1]
        and [s2].  Elements of the new set belonging to the intersection are
        copied from [s2].
    *)
    val union: t -> t -> t
    
    (** Use [diff s1 s2] to obtain a new set from the difference of the sets
        [s1] and [s2].
    *)
    val diff: t -> t -> t
    
    (** Use [interset s1 s2] to obtain a new set from the intersection of the
        sets [s1] and [s2].  All the elements in the new set are copied from
        [s2].
    *)
    val intersect: t -> t -> t
    
    (** Use [compare s1 s2] to compare the sequence of elements in the set
        [s1] and the sequence of elements in the set [s2] in order of
        increasing ordinality.  Two sets are ordinally equal if the sequences
        of their elements are ordinally equal.
    *)
    val compare: t -> t -> int
    
    (** Use [subset s1 s2] to test whether the set [s1] is a subset of [s2]. *)
    val subset: t -> t -> bool
    
    (** Use [of_list s] to iterate a list of elements and compose a new set by
        inserting them in order.
    *)
    val of_list: Element.t list -> t
    
    (** Use [of_list_incr s] to compose the set with elements in the ordered
        list [s].  Runs in linear time if the list [s] is known to be in
        increasing order.  Otherwise, there is an additional linear cost beyond
        [of_list s].
    *)
    val of_list_incr: Element.t list -> t
    
    (** Use [of_list_decr s] to compose the set with elements in the ordered
        list [s].  Runs in linear time if the list [s] is known to be in
        decreasing order.  Otherwise, there is an additional linear cost beyond
        [of_list s].
    *)
    val of_list_decr: Element.t list -> t
    
    (** Use [of_seq z] to evaluate a sequence of elements and compose a new set
        by inserting them in order.
    *)
    val of_seq: Element.t Cf_seq.t -> t
    
    (** Use [of_seq_incr z] to compose the set with elements in the ordered
        sequence [z].  Runs in linear time if the sequence [z] is known to be
        in increasing order.  Otherwise, there is an additional linear cost
        beyond [of_seq z].
    *)
    val of_seq_incr: Element.t Cf_seq.t -> t
    
    (** Use [of_seq_decr z] to compose the set with elements in the ordered
        sequence [z].  Runs in linear time if the sequence [z] is known to be
        in decreasing order.  Otherwise, there is an additional linear cost
        beyond [of_seq z].
    *)
    val of_seq_decr: Element.t Cf_seq.t -> t
    
    (** Use [to_list_incr s] to produce the list of elements in the set [s]
        in order of increasing ordinality.
    *)
    val to_list_incr: t -> Element.t list
    
    (** Use [to_list_decr s] to produce the list of elements in the set [s]
        in order of decreasing ordinality.
    *)
    val to_list_decr: t -> Element.t list
    
    (** Use [to_seq_incr s] to produce the sequence of elements in the set [s]
        in order of increasing ordinality.
    *)
    val to_seq_incr: t -> Element.t Cf_seq.t
    
    (** Use [to_seq_decr s] to produce the sequence of elements in the set [s]
        in order of decreasing ordinality.
    *)
    val to_seq_decr: t -> Element.t Cf_seq.t

    (** Use [nearest_decr k s] to obtain the key-value pair ordinally less than
        or equal to the key [k] in the set [s].  Raises [Not_found] if the set
        is empty or all the keys are ordinally greater.
    *)
    val nearest_decr: Element.t -> t -> Element.t Cf_seq.t
    
    (** Use [nearest_incr k s] to obtain the element ordinally greater
        than or equal to the key [k] in the set [s].  Raises [Not_found] if the
        set is empty or all the keys are ordinally less.
    *)
    val nearest_incr: Element.t -> t -> Element.t Cf_seq.t
    
    (** Use [iterate f s] to apply the iterator function [f] to every element
        in the set [s] in arbitrary order (not increasing or decreasing).
    *)
    val iterate: (Element.t -> unit) -> t -> unit
    
    (** Use [predicate f s] to test whether all the elements in the set [s]
        satisfy the predicate function [f], visiting the elements in an
        arbitrary order (not increasing or decreasing) until [f] returns
        [false] or all elements are tested.
    *)
    val predicate: (Element.t -> bool) -> t -> bool
    
    (** Use [fold f a s] to fold the elements of the set [s] into the folding
        function [f] with the initial state [a], by applying the elements in
        an arbitrary order (not increasing or decreasing).
    *)
    val fold: ('a -> Element.t -> 'a) -> 'a -> t -> 'a
    
    (** Use [filter f s] to produce a new set comprised of all the elements of
        the set [s] that satisfy the filtering function [f], applying the
        elements in an arbitrary order (not increasing or decreasing).
    *)
    val filter: (Element.t -> bool) -> t -> t
    
    (** Use [partition f s] to produce two new sets by applying the
        partitioning function [f] to every element in the set [s] in an
        arbitrary order (not increasing or decreasing).  The first set returned
        contains all the elements for which applying [f] returns [true].  The
        second set returned contains all the elements for which applying [f]
        returns [false].
    *)
    val partition: (Element.t -> bool) -> t -> t * t
end

(*--- End of File [ cf_set.mli ] ---*)