1 ------------------------------------------------------------------------------
3 -- GNAT LIBRARY COMPONENTS --
5 -- A D A . C O N T A I N E R S . --
6 -- I N D E F I N I T E _ O R D E R E D _ M U L T I S E T S --
10 -- Copyright (C) 2004-2005 Free Software Foundation, Inc. --
12 -- This specification is derived from the Ada Reference Manual for use with --
13 -- GNAT. The copyright notice above, and the license provisions that follow --
14 -- apply solely to the contents of the part following the private keyword. --
16 -- GNAT is free software; you can redistribute it and/or modify it under --
17 -- terms of the GNU General Public License as published by the Free Soft- --
18 -- ware Foundation; either version 2, or (at your option) any later ver- --
19 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
20 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
21 -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
22 -- for more details. You should have received a copy of the GNU General --
23 -- Public License distributed with GNAT; see file COPYING. If not, write --
24 -- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, --
25 -- Boston, MA 02110-1301, USA. --
27 -- As a special exception, if other files instantiate generics from this --
28 -- unit, or you link this unit with other files to produce an executable, --
29 -- this unit does not by itself cause the resulting executable to be --
30 -- covered by the GNU General Public License. This exception does not --
31 -- however invalidate any other reasons why the executable file might be --
32 -- covered by the GNU Public License. --
34 -- This unit was originally developed by Matthew J Heaney. --
35 ------------------------------------------------------------------------------
37 with Ada
.Containers
.Red_Black_Trees
;
38 with Ada
.Finalization
;
42 type Element_Type
(<>) is private;
44 with function "<" (Left
, Right
: Element_Type
) return Boolean is <>;
45 with function "=" (Left
, Right
: Element_Type
) return Boolean is <>;
47 package Ada
.Containers
.Indefinite_Ordered_Multisets
is
48 pragma Preelaborate
(Indefinite_Ordered_Multisets
);
50 type Set
is tagged private;
52 type Cursor
is private;
54 Empty_Set
: constant Set
;
56 No_Element
: constant Cursor
;
58 function "=" (Left
, Right
: Set
) return Boolean;
60 function Equivalent_Sets
(Left
, Right
: Set
) return Boolean;
62 function Length
(Container
: Set
) return Count_Type
;
64 function Is_Empty
(Container
: Set
) return Boolean;
66 procedure Clear
(Container
: in out Set
);
68 function Element
(Position
: Cursor
) return Element_Type
;
70 procedure Query_Element
72 Process
: not null access procedure (Element
: Element_Type
));
74 procedure Replace_Element
79 procedure Move
(Target
: in out Set
; Source
: in out Set
);
82 (Container
: in out Set
;
83 New_Item
: Element_Type
;
84 Position
: out Cursor
);
86 procedure Insert
(Container
: in out Set
; New_Item
: Element_Type
);
88 procedure Delete
(Container
: in out Set
; Item
: Element_Type
);
90 procedure Delete
(Container
: in out Set
; Position
: in out Cursor
);
92 procedure Delete_First
(Container
: in out Set
);
94 procedure Delete_Last
(Container
: in out Set
);
96 procedure Exclude
(Container
: in out Set
; Item
: Element_Type
);
98 procedure Union
(Target
: in out Set
;
101 function Union
(Left
, Right
: Set
) return Set
;
103 function "or" (Left
, Right
: Set
) return Set
renames Union
;
105 procedure Intersection
(Target
: in out Set
; Source
: Set
);
107 function Intersection
(Left
, Right
: Set
) return Set
;
109 function "and" (Left
, Right
: Set
) return Set
renames Intersection
;
111 procedure Difference
(Target
: in out Set
; Source
: Set
);
113 function Difference
(Left
, Right
: Set
) return Set
;
115 function "-" (Left
, Right
: Set
) return Set
renames Difference
;
117 procedure Symmetric_Difference
(Target
: in out Set
; Source
: Set
);
119 function Symmetric_Difference
(Left
, Right
: Set
) return Set
;
121 function "xor" (Left
, Right
: Set
) return Set
renames Symmetric_Difference
;
123 function Overlap
(Left
, Right
: Set
) return Boolean;
125 function Is_Subset
(Subset
: Set
; Of_Set
: Set
) return Boolean;
127 function Contains
(Container
: Set
; Item
: Element_Type
) return Boolean;
129 function Find
(Container
: Set
; Item
: Element_Type
) return Cursor
;
131 function Floor
(Container
: Set
; Item
: Element_Type
) return Cursor
;
133 function Ceiling
(Container
: Set
; Item
: Element_Type
) return Cursor
;
135 function First
(Container
: Set
) return Cursor
;
137 function First_Element
(Container
: Set
) return Element_Type
;
139 function Last
(Container
: Set
) return Cursor
;
141 function Last_Element
(Container
: Set
) return Element_Type
;
143 function Next
(Position
: Cursor
) return Cursor
;
145 procedure Next
(Position
: in out Cursor
);
147 function Previous
(Position
: Cursor
) return Cursor
;
149 procedure Previous
(Position
: in out Cursor
);
151 function Has_Element
(Position
: Cursor
) return Boolean;
153 function "<" (Left
, Right
: Cursor
) return Boolean;
155 function ">" (Left
, Right
: Cursor
) return Boolean;
157 function "<" (Left
: Cursor
; Right
: Element_Type
) return Boolean;
159 function ">" (Left
: Cursor
; Right
: Element_Type
) return Boolean;
161 function "<" (Left
: Element_Type
; Right
: Cursor
) return Boolean;
163 function ">" (Left
: Element_Type
; Right
: Cursor
) return Boolean;
167 Process
: not null access procedure (Position
: Cursor
));
169 procedure Reverse_Iterate
171 Process
: not null access procedure (Position
: Cursor
));
176 Process
: not null access procedure (Position
: Cursor
));
178 procedure Reverse_Iterate
181 Process
: not null access procedure (Position
: Cursor
));
185 type Key_Type
(<>) is limited private;
187 with function Key
(Element
: Element_Type
) return Key_Type
;
189 with function "<" (Left
: Key_Type
; Right
: Element_Type
)
190 return Boolean is <>;
192 with function ">" (Left
: Key_Type
; Right
: Element_Type
)
193 return Boolean is <>;
195 package Generic_Keys
is
197 function Contains
(Container
: Set
; Key
: Key_Type
) return Boolean;
199 function Find
(Container
: Set
; Key
: Key_Type
) return Cursor
;
201 function Floor
(Container
: Set
; Key
: Key_Type
) return Cursor
;
203 function Ceiling
(Container
: Set
; Key
: Key_Type
) return Cursor
;
205 function Key
(Position
: Cursor
) return Key_Type
;
207 function Element
(Container
: Set
; Key
: Key_Type
) return Element_Type
;
209 procedure Delete
(Container
: in out Set
; Key
: Key_Type
);
211 procedure Exclude
(Container
: in out Set
; Key
: Key_Type
);
213 function "<" (Left
: Cursor
; Right
: Key_Type
) return Boolean;
215 function ">" (Left
: Cursor
; Right
: Key_Type
) return Boolean;
217 function "<" (Left
: Key_Type
; Right
: Cursor
) return Boolean;
219 function ">" (Left
: Key_Type
; Right
: Cursor
) return Boolean;
221 procedure Update_Element_Preserving_Key
222 (Container
: in out Set
;
224 Process
: not null access
225 procedure (Element
: in out Element_Type
));
230 Process
: not null access procedure (Position
: Cursor
));
232 procedure Reverse_Iterate
235 Process
: not null access procedure (Position
: Cursor
));
242 type Node_Access
is access Node_Type
;
244 type Element_Access
is access Element_Type
;
246 type Node_Type
is limited record
247 Parent
: Node_Access
;
250 Color
: Red_Black_Trees
.Color_Type
:= Red_Black_Trees
.Red
;
251 Element
: Element_Access
;
254 package Tree_Types
is new Red_Black_Trees
.Generic_Tree_Types
258 type Set
is new Ada
.Finalization
.Controlled
with record
259 Tree
: Tree_Types
.Tree_Type
;
262 procedure Adjust
(Container
: in out Set
);
264 procedure Finalize
(Container
: in out Set
) renames Clear
;
268 use Ada
.Finalization
;
270 type Set_Access
is access all Set
;
271 for Set_Access
'Storage_Size use 0;
273 type Cursor
is record
274 Container
: Set_Access
;
278 No_Element
: constant Cursor
:= Cursor
'(null, null);
282 procedure Write (Stream : access Root_Stream_Type'Class; Container : Set);
284 for Set'Write use Write;
287 (Stream : access Root_Stream_Type'Class;
288 Container : out Set);
290 for Set'Read use Read;
292 Empty_Set : constant Set :=
293 (Controlled with Tree => (First => null,
300 end Ada.Containers.Indefinite_Ordered_Multisets;