PR tree-optimization/19853
[official-gcc.git] / gcc / ada / a-cdlili.ads
blobf87479cabe649c109937fa5aefe5aeaeea1f2a8d
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT LIBRARY COMPONENTS --
4 -- --
5 -- ADA.CONTAINERS.DOUBLY_LINKED_LISTS --
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.Finalization;
37 with Ada.Streams;
39 generic
40 type Element_Type is private;
42 with function "=" (Left, Right : Element_Type)
43 return Boolean is <>;
45 package Ada.Containers.Doubly_Linked_Lists is
46 pragma Preelaborate (Doubly_Linked_Lists);
48 type List is tagged private;
50 type Cursor is private;
52 Empty_List : constant List;
54 No_Element : constant Cursor;
56 function "=" (Left, Right : List) return Boolean;
58 function Length (Container : List) return Count_Type;
60 function Is_Empty (Container : List) return Boolean;
62 procedure Clear (Container : in out List);
64 function Element (Position : Cursor) return Element_Type;
66 procedure Query_Element
67 (Position : Cursor;
68 Process : not null access procedure (Element : Element_Type));
70 procedure Update_Element
71 (Position : Cursor;
72 Process : not null access procedure (Element : in out Element_Type));
74 procedure Replace_Element
75 (Position : Cursor;
76 By : Element_Type);
78 procedure Move
79 (Target : in out List;
80 Source : in out List);
82 procedure Prepend
83 (Container : in out List;
84 New_Item : Element_Type;
85 Count : Count_Type := 1);
87 procedure Append
88 (Container : in out List;
89 New_Item : Element_Type;
90 Count : Count_Type := 1);
92 procedure Insert
93 (Container : in out List;
94 Before : Cursor;
95 New_Item : Element_Type;
96 Count : Count_Type := 1);
98 procedure Insert
99 (Container : in out List;
100 Before : Cursor;
101 New_Item : Element_Type;
102 Position : out Cursor;
103 Count : Count_Type := 1);
105 procedure Insert
106 (Container : in out List;
107 Before : Cursor;
108 Position : out Cursor;
109 Count : Count_Type := 1);
111 procedure Delete
112 (Container : in out List;
113 Position : in out Cursor;
114 Count : Count_Type := 1);
116 procedure Delete_First
117 (Container : in out List;
118 Count : Count_Type := 1);
120 procedure Delete_Last
121 (Container : in out List;
122 Count : Count_Type := 1);
124 generic
125 with function "<" (Left, Right : Element_Type)
126 return Boolean is <>;
127 procedure Generic_Sort (Container : in out List);
129 generic
130 with function "<" (Left, Right : Element_Type)
131 return Boolean is <>;
132 procedure Generic_Merge (Target : in out List; Source : in out List);
134 procedure Reverse_List (Container : in out List);
136 procedure Swap (I, J : in Cursor);
138 procedure Swap_Links
139 (Container : in out List;
140 I, J : Cursor);
142 procedure Splice
143 (Target : in out List;
144 Before : Cursor;
145 Source : in out List);
147 procedure Splice
148 (Target : in out List;
149 Before : Cursor;
150 Position : Cursor);
152 procedure Splice
153 (Target : in out List;
154 Before : Cursor;
155 Source : in out List;
156 Position : Cursor);
158 function First (Container : List) return Cursor;
160 function First_Element (Container : List) return Element_Type;
162 function Last (Container : List) return Cursor;
164 function Last_Element (Container : List) return Element_Type;
166 function Contains
167 (Container : List;
168 Item : Element_Type) return Boolean;
170 function Find
171 (Container : List;
172 Item : Element_Type;
173 Position : Cursor := No_Element) return Cursor;
175 function Reverse_Find
176 (Container : List;
177 Item : Element_Type;
178 Position : Cursor := No_Element) return Cursor;
180 function Next (Position : Cursor) return Cursor;
182 function Previous (Position : Cursor) return Cursor;
184 procedure Next (Position : in out Cursor);
186 procedure Previous (Position : in out Cursor);
188 function Has_Element (Position : Cursor) return Boolean;
190 procedure Iterate
191 (Container : List;
192 Process : not null access procedure (Position : Cursor));
194 procedure Reverse_Iterate
195 (Container : List;
196 Process : not null access procedure (Position : Cursor));
198 private
199 type Node_Type;
200 type Node_Access is access Node_Type;
202 type Node_Type is
203 record
204 Element : Element_Type;
205 Next : Node_Access;
206 Prev : Node_Access;
207 end record;
209 function "=" (L, R : Node_Type) return Boolean is abstract;
211 use Ada.Finalization;
213 type List is
214 new Controlled with record
215 First : Node_Access;
216 Last : Node_Access;
217 Length : Count_Type := 0;
218 end record;
220 procedure Adjust (Container : in out List);
222 procedure Finalize (Container : in out List) renames Clear;
224 use Ada.Streams;
226 procedure Read
227 (Stream : access Root_Stream_Type'Class;
228 Item : out List);
230 for List'Read use Read;
232 procedure Write
233 (Stream : access Root_Stream_Type'Class;
234 Item : List);
236 for List'Write use Write;
238 Empty_List : constant List := List'(Controlled with null, null, 0);
240 type List_Access is access constant List;
241 for List_Access'Storage_Size use 0;
243 type Cursor is
244 record
245 Container : List_Access;
246 Node : Node_Access;
247 end record;
249 No_Element : constant Cursor := Cursor'(null, null);
251 end Ada.Containers.Doubly_Linked_Lists;