* config/rs6000/predicates.md (branch_comparison_operator): Change
[official-gcc.git] / gcc / ada / a-ciorse.ads
blobe05dc1a6638882d2c7767c50188039257662a636
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT LIBRARY COMPONENTS --
4 -- --
5 -- ADA.CONTAINERS.INDEFINITE_ORDERED_SETS --
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.Indefinite_Ordered_Sets is
47 pragma Preelaborate (Indefinite_Ordered_Sets);
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 -- TODO: resolve in Atlanta???
72 -- procedure Replace_Element
73 -- (Container : in out Set;
74 -- Position : Cursor;
75 -- By : Element_Type);
77 procedure Move (Target : in out Set; Source : in out Set);
79 procedure Insert
80 (Container : in out Set;
81 New_Item : Element_Type;
82 Position : out Cursor;
83 Inserted : out Boolean);
85 procedure Insert
86 (Container : in out Set;
87 New_Item : Element_Type);
89 procedure Include
90 (Container : in out Set;
91 New_Item : Element_Type);
93 procedure Replace
94 (Container : in out Set;
95 New_Item : Element_Type);
97 procedure Delete
98 (Container : in out Set;
99 Item : Element_Type);
101 procedure Exclude
102 (Container : in out Set;
103 Item : Element_Type);
105 procedure Delete
106 (Container : in out Set;
107 Position : in out Cursor);
109 procedure Delete_First (Container : in out Set);
111 procedure Delete_Last (Container : in out Set);
113 procedure Union (Target : in out Set; Source : Set);
115 function Union (Left, Right : Set) return Set;
117 function "or" (Left, Right : Set) return Set renames Union;
119 procedure Intersection (Target : in out Set; Source : Set);
121 function Intersection (Left, Right : Set) return Set;
123 function "and" (Left, Right : Set) return Set renames Intersection;
125 procedure Difference (Target : in out Set;
126 Source : Set);
128 function Difference (Left, Right : Set) return Set;
130 function "-" (Left, Right : Set) return Set renames Difference;
132 procedure Symmetric_Difference (Target : in out Set; Source : Set);
134 function Symmetric_Difference (Left, Right : Set) return Set;
136 function "xor" (Left, Right : Set) return Set renames Symmetric_Difference;
138 function Overlap (Left, Right : Set) return Boolean;
140 function Is_Subset (Subset : Set; Of_Set : Set) return Boolean;
142 function Contains (Container : Set; Item : Element_Type) return Boolean;
144 function Find (Container : Set; Item : Element_Type) return Cursor;
146 function Floor (Container : Set; Item : Element_Type) return Cursor;
148 function Ceiling (Container : Set; Item : Element_Type) return Cursor;
150 function First (Container : Set) return Cursor;
152 function First_Element (Container : Set) return Element_Type;
154 function Last (Container : Set) return Cursor;
156 function Last_Element (Container : Set) return Element_Type;
158 function Next (Position : Cursor) return Cursor;
160 function Previous (Position : Cursor) return Cursor;
162 procedure Next (Position : in out Cursor);
164 procedure Previous (Position : in out Cursor);
166 function Has_Element (Position : Cursor) return Boolean;
168 function "<" (Left, Right : Cursor) return Boolean;
170 function ">" (Left, Right : Cursor) return Boolean;
172 function "<" (Left : Cursor; Right : Element_Type) return Boolean;
174 function ">" (Left : Cursor; Right : Element_Type) return Boolean;
176 function "<" (Left : Element_Type; Right : Cursor) return Boolean;
178 function ">" (Left : Element_Type; Right : Cursor) return Boolean;
180 procedure Iterate
181 (Container : Set;
182 Process : not null access procedure (Position : Cursor));
184 procedure Reverse_Iterate
185 (Container : Set;
186 Process : not null access procedure (Position : Cursor));
188 generic
189 type Key_Type (<>) is limited private;
191 with function Key (Element : Element_Type) return Key_Type;
193 with function "<" (Left : Key_Type; Right : Element_Type)
194 return Boolean is <>;
196 with function ">" (Left : Key_Type; Right : Element_Type)
197 return Boolean is <>;
199 package Generic_Keys is
201 function Contains
202 (Container : Set;
203 Key : Key_Type) return Boolean;
205 function Find
206 (Container : Set;
207 Key : Key_Type) return Cursor;
209 function Floor
210 (Container : Set;
211 Key : Key_Type) return Cursor;
213 function Ceiling
214 (Container : Set;
215 Key : Key_Type) return Cursor;
217 function Key (Position : Cursor) return Key_Type;
219 function Element
220 (Container : Set;
221 Key : Key_Type) return Element_Type;
223 -- TODO: resolve in Atlanta???
224 -- procedure Replace
225 -- (Container : in out Set;
226 -- Key : Key_Type;
227 -- New_Item : Element_Type);
229 procedure Delete (Container : in out Set; Key : Key_Type);
231 procedure Exclude (Container : in out Set; Key : Key_Type);
233 function "<" (Left : Cursor; Right : Key_Type) return Boolean;
235 function ">" (Left : Cursor; Right : Key_Type) return Boolean;
237 function "<" (Left : Key_Type; Right : Cursor) return Boolean;
239 function ">" (Left : Key_Type; Right : Cursor) return Boolean;
241 -- TODO: resolve name in Atlanta???
242 procedure Checked_Update_Element
243 (Container : in out Set;
244 Position : Cursor;
245 Process : not null access
246 procedure (Element : in out Element_Type));
248 end Generic_Keys;
250 private
252 type Node_Type;
253 type Node_Access is access Node_Type;
255 package Tree_Types is
256 new Red_Black_Trees.Generic_Tree_Types (Node_Access);
258 use Tree_Types;
259 use Ada.Finalization;
261 type Set is new Controlled with record
262 Tree : Tree_Type := (Length => 0, others => null);
263 end record;
265 procedure Adjust (Container : in out Set);
267 procedure Finalize (Container : in out Set) renames Clear;
269 type Set_Access is access constant Set;
270 for Set_Access'Storage_Size use 0;
272 type Cursor is record
273 Container : Set_Access;
274 Node : Node_Access;
275 end record;
277 No_Element : constant Cursor := Cursor'(null, null);
279 use Ada.Streams;
281 procedure Write
282 (Stream : access Root_Stream_Type'Class;
283 Container : Set);
285 for Set'Write use Write;
287 procedure Read
288 (Stream : access Root_Stream_Type'Class;
289 Container : out Set);
291 for Set'Read use Read;
293 Empty_Set : constant Set :=
294 (Controlled with Tree => (Length => 0, others => null));
296 end Ada.Containers.Indefinite_Ordered_Sets;