* arm.c (FL_WBUF): Define.
[official-gcc.git] / gcc / ada / a-coormu.ads
blob6d848a8215a59d2894cdf3ef0801440de0112215
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT LIBRARY COMPONENTS --
4 -- --
5 -- ADA.CONTAINERS.ORDERED_MULTISETS --
6 -- --
7 -- S p e c --
8 -- --
9 -- Copyright (C) 2004 Free Software Foundation, Inc. --
10 -- --
11 -- This specification is derived from the Ada Reference Manual for use with --
12 -- GNAT. The copyright notice above, and the license provisions that follow --
13 -- apply solely to the contents of the part following the private keyword. --
14 -- --
15 -- GNAT is free software; you can redistribute it and/or modify it under --
16 -- terms of the GNU General Public License as published by the Free Soft- --
17 -- ware Foundation; either version 2, or (at your option) any later ver- --
18 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
19 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
20 -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
21 -- for more details. You should have received a copy of the GNU General --
22 -- Public License distributed with GNAT; see file COPYING. If not, write --
23 -- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, --
24 -- MA 02111-1307, USA. --
25 -- --
26 -- As a special exception, if other files instantiate generics from this --
27 -- unit, or you link this unit with other files to produce an executable, --
28 -- this unit does not by itself cause the resulting executable to be --
29 -- covered by the GNU General Public License. This exception does not --
30 -- however invalidate any other reasons why the executable file might be --
31 -- covered by the GNU Public License. --
32 -- --
33 -- This unit was originally developed by Matthew J Heaney. --
34 ------------------------------------------------------------------------------
36 with Ada.Containers.Red_Black_Trees;
37 with Ada.Finalization;
38 with Ada.Streams;
40 generic
41 type Element_Type is private;
43 with function "<" (Left, Right : Element_Type) return Boolean is <>;
44 with function "=" (Left, Right : Element_Type) return Boolean is <>;
46 package Ada.Containers.Ordered_Multisets is
47 pragma Preelaborate (Ordered_Multisets);
49 type Set is tagged private;
51 type Cursor is private;
53 Empty_Set : constant Set;
55 No_Element : constant Cursor;
57 function "=" (Left, Right : Set) return Boolean;
59 function Length (Container : Set) return Count_Type;
61 function Is_Empty (Container : Set) return Boolean;
63 procedure Clear (Container : in out Set);
65 function Element (Position : Cursor) return Element_Type;
67 procedure Query_Element
68 (Position : Cursor;
69 Process : not null access procedure (Element : Element_Type));
71 procedure Move
72 (Target : in out Set;
73 Source : in out Set);
75 procedure Insert
76 (Container : in out Set;
77 New_Item : Element_Type;
78 Position : out Cursor);
80 procedure Insert
81 (Container : in out Set;
82 New_Item : Element_Type);
84 procedure Delete
85 (Container : in out Set;
86 Item : Element_Type);
88 procedure Exclude
89 (Container : in out Set;
90 Item : Element_Type);
92 procedure Delete
93 (Container : in out Set;
94 Position : in out Cursor);
96 procedure Delete_First (Container : in out Set);
98 procedure Delete_Last (Container : in out Set);
100 -- NOTE: The following operation is named Replace in the Madison API.
101 -- However, it should be named Replace_Element. ???
103 -- procedure Replace
104 -- (Container : in out Set;
105 -- Position : Cursor;
106 -- By : Element_Type);
108 procedure Union (Target : in out Set; Source : Set);
110 function Union (Left, Right : Set) return Set;
112 function "or" (Left, Right : Set) return Set renames Union;
114 procedure Intersection (Target : in out Set; Source : Set);
116 function Intersection (Left, Right : Set) return Set;
118 function "and" (Left, Right : Set) return Set renames Intersection;
120 procedure Difference (Target : in out Set; Source : Set);
122 function Difference (Left, Right : Set) return Set;
124 function "-" (Left, Right : Set) return Set renames Difference;
126 procedure Symmetric_Difference (Target : in out Set; Source : Set);
128 function Symmetric_Difference (Left, Right : Set) return Set;
130 function "xor" (Left, Right : Set) return Set renames Symmetric_Difference;
132 function Overlap (Left, Right : Set) return Boolean;
134 function Is_Subset (Subset : Set; Of_Set : Set) return Boolean;
136 function Contains (Container : Set; Item : Element_Type) return Boolean;
138 function Find (Container : Set; Item : Element_Type) return Cursor;
140 function Floor (Container : Set; Item : Element_Type) return Cursor;
142 function Ceiling (Container : Set; Item : Element_Type) return Cursor;
144 function First (Container : Set) return Cursor;
146 function First_Element (Container : Set) return Element_Type;
148 function Last (Container : Set) return Cursor;
150 function Last_Element (Container : Set) return Element_Type;
152 function Next (Position : Cursor) return Cursor;
154 function Previous (Position : Cursor) return Cursor;
156 procedure Next (Position : in out Cursor);
158 procedure Previous (Position : in out Cursor);
160 function Has_Element (Position : Cursor) return Boolean;
162 function "<" (Left, Right : Cursor) return Boolean;
164 function ">" (Left, Right : Cursor) return Boolean;
166 function "<" (Left : Cursor; Right : Element_Type) return Boolean;
168 function ">" (Left : Cursor; Right : Element_Type) return Boolean;
170 function "<" (Left : Element_Type; Right : Cursor) return Boolean;
172 function ">" (Left : Element_Type; Right : Cursor) return Boolean;
174 procedure Iterate
175 (Container : Set;
176 Process : not null access procedure (Position : Cursor));
178 procedure Reverse_Iterate
179 (Container : Set;
180 Process : not null access procedure (Position : Cursor));
182 procedure Iterate
183 (Container : Set;
184 Item : Element_Type;
185 Process : not null access procedure (Position : Cursor));
187 procedure Reverse_Iterate
188 (Container : Set;
189 Item : Element_Type;
190 Process : not null access procedure (Position : Cursor));
192 generic
193 type Key_Type (<>) is limited private;
195 with function Key (Element : Element_Type) return Key_Type;
197 with function "<" (Left : Key_Type; Right : Element_Type)
198 return Boolean is <>;
200 with function ">" (Left : Key_Type; Right : Element_Type)
201 return Boolean is <>;
203 package Generic_Keys is
205 function Contains (Container : Set; Key : Key_Type) return Boolean;
207 function Find (Container : Set; Key : Key_Type) return Cursor;
209 function Floor (Container : Set; Key : Key_Type) return Cursor;
211 function Ceiling (Container : Set; Key : Key_Type) return Cursor;
213 function Key (Position : Cursor) return Key_Type;
215 function Element (Container : Set; Key : Key_Type) return Element_Type;
217 -- NOTE: in post-madison api ???
218 -- procedure Replace
219 -- (Container : in out Set;
220 -- Key : Key_Type;
221 -- New_Item : Element_Type);
223 procedure Delete (Container : in out Set; Key : Key_Type);
225 procedure Exclude (Container : in out Set; Key : Key_Type);
227 function "<" (Left : Cursor; Right : Key_Type) return Boolean;
229 function ">" (Left : Cursor; Right : Key_Type) return Boolean;
231 function "<" (Left : Key_Type; Right : Cursor) return Boolean;
233 function ">" (Left : Key_Type; Right : Cursor) return Boolean;
235 -- Should name of following be "Update_Element" ???
237 procedure Checked_Update_Element
238 (Container : in out Set;
239 Position : Cursor;
240 Process : not null access
241 procedure (Element : in out Element_Type));
243 procedure Iterate
244 (Container : Set;
245 Key : Key_Type;
246 Process : not null access procedure (Position : Cursor));
248 procedure Reverse_Iterate
249 (Container : Set;
250 Key : Key_Type;
251 Process : not null access procedure (Position : Cursor));
253 end Generic_Keys;
255 private
257 type Node_Type;
258 type Node_Access is access Node_Type;
260 package Tree_Types is
261 new Red_Black_Trees.Generic_Tree_Types (Node_Access);
263 use Tree_Types;
264 use Ada.Finalization;
266 type Set is new Controlled with record
267 Tree : Tree_Type := (Length => 0, others => null);
268 end record;
270 procedure Adjust (Container : in out Set);
272 procedure Finalize (Container : in out Set) renames Clear;
274 type Set_Access is access constant Set;
275 for Set_Access'Storage_Size use 0;
277 type Cursor is record
278 Container : Set_Access;
279 Node : Node_Access;
280 end record;
282 No_Element : constant Cursor := Cursor'(null, null);
284 use Ada.Streams;
286 procedure Write
287 (Stream : access Root_Stream_Type'Class;
288 Container : Set);
290 for Set'Write use Write;
292 procedure Read
293 (Stream : access Root_Stream_Type'Class;
294 Container : out Set);
296 for Set'Read use Read;
298 Empty_Set : constant Set :=
299 (Controlled with Tree => (Length => 0, others => null));
301 end Ada.Containers.Ordered_Multisets;