A.18.9 The Generic Package Containers.Ordered_Sets
Static Semantics
{
AI95-00302-03}
The generic library package Containers.Ordered_Sets has the following
declaration:
{
AI05-0084-1}
{
AI05-0212-1}
with Ada.Iterator_Interfaces;
generic
type Element_Type
is private;
with function "<" (Left, Right : Element_Type)
return Boolean
is <>;
with function "=" (Left, Right : Element_Type)
return Boolean
is <>;
package Ada.Containers.Ordered_Sets
is
pragma Preelaborate(Ordered_Sets);
pragma Remote_Types(Ordered_Sets);
function Equivalent_Elements (Left, Right : Element_Type)
return Boolean;
{
AI05-0212-1}
type Set
is tagged private
with Constant_Indexing => Constant_Reference,
Default_Iterator => Iterate,
Iterator_Element => Element_Type;
pragma Preelaborable_Initialization(Set);
type Cursor
is private;
pragma Preelaborable_Initialization(Cursor);
Empty_Set :
constant Set;
No_Element :
constant Cursor;
{
AI05-0212-1}
function Has_Element (Position : Cursor)
return Boolean;
{
AI05-0212-1}
package Set_Iterator_Interfaces
is new
Ada.Iterator_Interfaces (Cursor, Has_Element);
function "=" (Left, Right : Set) return Boolean;
function Equivalent_Sets (Left, Right : Set)
return Boolean;
function To_Set (New_Item : Element_Type)
return Set;
function Length (Container : Set)
return Count_Type;
function Is_Empty (Container : Set)
return Boolean;
procedure Clear (Container :
in out Set);
function Element (Position : Cursor)
return Element_Type;
procedure Replace_Element (Container :
in out Set;
Position :
in Cursor;
New_Item :
in Element_Type);
procedure Query_Element
(Position :
in Cursor;
Process :
not null access procedure (Element :
in Element_Type));
{
AI05-0212-1}
type Constant_Reference_Type
(Element :
not null access constant Element_Type)
is private
with Implicit_Dereference => Element;
{
AI05-0212-1}
function Constant_Reference (Container :
aliased in Set;
Position :
in Cursor)
return Constant_Reference_Type;
{
AI05-0001-1}
procedure Assign (Target :
in out Set; Source :
in Set);
procedure Move (Target :
in out Set;
Source :
in out Set);
procedure Insert (Container :
in out Set;
New_Item :
in Element_Type;
Position :
out Cursor;
Inserted :
out Boolean);
procedure Insert (Container :
in out Set;
New_Item :
in Element_Type);
procedure Include (Container :
in out Set;
New_Item :
in Element_Type);
procedure Replace (Container :
in out Set;
New_Item :
in Element_Type);
procedure Exclude (Container :
in out Set;
Item :
in Element_Type);
procedure Delete (Container :
in out Set;
Item :
in Element_Type);
procedure Delete (Container :
in out Set;
Position :
in out Cursor);
procedure Delete_First (Container :
in out Set);
procedure Delete_Last (Container :
in out Set);
procedure Union (Target :
in out Set;
Source :
in Set);
function Union (Left, Right : Set)
return Set;
function "or" (Left, Right : Set) return Set renames Union;
procedure Intersection (Target :
in out Set;
Source :
in Set);
function Intersection (Left, Right : Set)
return Set;
function "and" (Left, Right : Set) return Set renames Intersection;
procedure Difference (Target :
in out Set;
Source :
in Set);
function Difference (Left, Right : Set)
return Set;
function "-" (Left, Right : Set) return Set renames Difference;
procedure Symmetric_Difference (Target :
in out Set;
Source :
in Set);
function Symmetric_Difference (Left, Right : Set)
return Set;
function "xor" (Left, Right : Set) return Set renames
Symmetric_Difference;
function Overlap (Left, Right : Set)
return Boolean;
function Is_Subset (Subset : Set;
Of_Set : Set)
return Boolean;
function First (Container : Set)
return Cursor;
function First_Element (Container : Set)
return Element_Type;
function Last (Container : Set)
return Cursor;
function Last_Element (Container : Set)
return Element_Type;
function Next (Position : Cursor)
return Cursor;
procedure Next (Position :
in out Cursor);
function Previous (Position : Cursor)
return Cursor;
procedure Previous (Position :
in out Cursor);
function Find (Container : Set;
Item : Element_Type)
return Cursor;
function Floor (Container : Set;
Item : Element_Type)
return Cursor;
function Ceiling (Container : Set;
Item : Element_Type)
return Cursor;
function Contains (Container : Set;
Item : Element_Type)
return Boolean;
function "<" (Left, Right : Cursor) return Boolean;
function ">" (Left, Right : Cursor) return Boolean;
function "<" (Left : Cursor; Right : Element_Type)
return Boolean;
function ">" (Left : Cursor; Right : Element_Type)
return Boolean;
function "<" (Left : Element_Type; Right : Cursor)
return Boolean;
function ">" (Left : Element_Type; Right : Cursor)
return Boolean;
procedure Iterate
(Container :
in Set;
Process :
not null access procedure (Position :
in Cursor));
procedure Reverse_Iterate
(Container :
in Set;
Process :
not null access procedure (Position :
in Cursor));
{
AI05-0212-1}
function Iterate (Container :
in Set)
return Set_Iterator_Interfaces.Reversible_Iterator'Class;
{
AI05-0262-1}
function Iterate (Container :
in Set; Start :
in Cursor)
return Set_Iterator_Interfaces.Reversible_Iterator'Class;
generic
type Key_Type (<>)
is private;
with function Key (Element : Element_Type)
return Key_Type;
with function "<" (Left, Right : Key_Type)
return Boolean
is <>;
package Generic_Keys
is
function Equivalent_Keys (Left, Right : Key_Type)
return Boolean;
function Key (Position : Cursor)
return Key_Type;
function Element (Container : Set;
Key : Key_Type)
return Element_Type;
procedure Replace (Container :
in out Set;
Key :
in Key_Type;
New_Item :
in Element_Type);
procedure Exclude (Container :
in out Set;
Key :
in Key_Type);
procedure Delete (Container :
in out Set;
Key :
in Key_Type);
function Find (Container : Set;
Key : Key_Type)
return Cursor;
function Floor (Container : Set;
Key : Key_Type)
return Cursor;
function Ceiling (Container : Set;
Key : Key_Type)
return Cursor;
function Contains (Container : Set;
Key : Key_Type)
return Boolean;
procedure Update_Element_Preserving_Key
(Container :
in out Set;
Position :
in Cursor;
Process :
not null access procedure
(Element :
in out Element_Type));
{
AI05-0212-1}
type Reference_Type
(Element :
not null access Element_Type)
is private
with Implicit_Dereference => Element;
{
AI05-0212-1}
function Reference_Preserving_Key (Container :
aliased in out Set;
Position :
in Cursor)
return Reference_Type;
{
AI05-0212-1}
function Constant_Reference (Container :
aliased in Set;
Key :
in Key_Type)
return Constant_Reference_Type;
{
AI05-0212-1}
function Reference_Preserving_Key (Container :
aliased in out Set;
Key :
in Key_Type)
return Reference_Type;
end Generic_Keys;
private
... -- not specified by the language
end Ada.Containers.Ordered_Sets;
{
AI95-00302-03}
Two elements
E1 and
E2 are
equivalent if both
E1
<
E2 and
E2 <
E1 return False, using the generic
formal "<" operator for elements.
Function
Equivalent_Elements returns True if Left and Right are equivalent, and
False otherwise.
{
AI95-00302-03}
{
AI05-0044-1}
The actual function for the generic formal function "<"
on Element_Type values is expected to return the same value each time
it is called with a particular pair of key values. It should define a
strict weak ordering relationship (see
A.18).
If the actual for "<" behaves in some other manner, the
behavior of this package is unspecified. Which subprograms of this package
call "<" and how many times they call it, is unspecified.
{
AI05-0044-1}
If the actual function for the generic formal function "="
returns True for any pair of nonequivalent elements, then the behavior
of the container function "=" is unspecified.
{
AI95-00302-03}
If the value of an element stored in a set is changed other than by an
operation in this package such that at least one of "<"
or "=" give different results, the behavior of this package
is unspecified.
{
AI95-00302-03}
{
AI05-0262-1}
The
first element of a nonempty set is the one which is less than
all the other elements in the set. The
last element of a nonempty
set is the one which is greater than all the other elements in the set.
The
successor of an element is the smallest element that is larger
than the given element. The
predecessor of an element is the largest
element that is smaller than the given element. All comparisons are done
using the generic formal "<" operator for elements.
function Copy (Source : Set) return Set;
{
AI05-0001-1}
Returns a set whose elements are initialized from the corresponding elements
of Source.
procedure Delete_First (Container : in out Set);
{
AI95-00302-03}
{
AI05-0264-1}
If Container is empty, Delete_First has no effect. Otherwise, the element
designated by First (Container) is removed from Container. Delete_First
tampers with the cursors of Container.
procedure Delete_Last (Container : in out Set);
{
AI95-00302-03}
{
AI05-0264-1}
If Container is empty, Delete_Last has no effect. Otherwise, the element
designated by Last (Container) is removed from Container. Delete_Last
tampers with the cursors of Container.
function First_Element (Container : Set) return Element_Type;
function Last (Container : Set) return Cursor;
{
AI95-00302-03}
Returns a cursor that designates the last element in Container. If Container
is empty, returns No_Element.
function Last_Element (Container : Set) return Element_Type;
function Previous (Position : Cursor) return Cursor;
{
AI95-00302-03}
{
AI05-0262-1}
If Position equals No_Element, then Previous returns No_Element. Otherwise,
Previous returns a cursor designating the predecessor element of the
one designated by Position. If Position designates the first element,
then Previous returns No_Element.
procedure Previous (Position : in out Cursor);
function Floor (Container : Set;
Item : Element_Type) return Cursor;
{
AI95-00302-03}
{
AI05-0264-1}
Floor searches for the last element which is not greater than Item. If
such an element is found, a cursor that designates it is returned. Otherwise,
No_Element is returned.
function Ceiling (Container : Set;
Item : Element_Type) return Cursor;
{
AI95-00302-03}
{
AI05-0264-1}
Ceiling searches for the first element which is not less than Item. If
such an element is found, a cursor that designates it is returned. Otherwise,
No_Element is returned.
function "<" (Left, Right : Cursor) return Boolean;
function ">" (Left, Right : Cursor) return Boolean;
function "<" (Left : Cursor; Right : Element_Type) return Boolean;
function ">" (Left : Cursor; Right : Element_Type) return Boolean;
function "<" (Left : Element_Type; Right : Cursor) return Boolean;
function ">" (Left : Element_Type; Right : Cursor) return Boolean;
procedure Reverse_Iterate
(Container : in Set;
Process : not null access procedure (Position : in Cursor));
{
AI95-00302-03}
{
AI05-0212-1}
Iterates over the elements in Container as per procedure Iterate, with
the difference that the elements are traversed in predecessor order,
starting with the last element.
function Iterate (Container : in Set)
return Set_Iterator_Interfaces.Reversible_Iterator'Class;
{
AI05-0212-1}
{
AI05-0265-1}
{
AI05-0269-1}
Iterate returns a reversible iterator object (see
5.5.1)
that will generate a value for a loop parameter (see
5.5.2)
designating each element in Container, starting with the first element
and moving the cursor according to the successor relation when used as
a forward iterator, and starting with the last element and moving the
cursor according to the predecessor relation when used as a reverse iterator.
Tampering with the cursors of Container is prohibited while the iterator
object exists (in particular, in the
sequence_of_statements
of the
loop_statement
whose
iterator_specification
denotes this object). The iterator object needs finalization.
function Iterate (Container : in Set; Start : in Cursor)
return Set_Iterator_Interfaces.Reversible_Iterator'Class;
{
AI05-0262-1}
{
AI05-0265-1}
{
AI05-0269-1}
If Start is not No_Element and does not designate an item in Container,
then Program_Error is propagated. If Start is No_Element, then Constraint_Error
is propagated. Otherwise, Iterate returns a reversible iterator object
(see
5.5.1) that will generate a value for
a loop parameter (see
5.5.2) designating
each element in Container, starting with the element designated by Start
and moving the cursor according to the successor relation when used as
a forward iterator, or moving the cursor according to the predecessor
relation when used as a reverse iterator. Tampering with the cursors
of Container is prohibited while the iterator object exists (in particular,
in the
sequence_of_statements
of the
loop_statement
whose
iterator_specification
denotes this object). The iterator object needs finalization.
Discussion:
Exits are allowed from the loops created using the iterator objects.
In particular, to stop the iteration at a particular cursor, just add
exit when Cur = Stop;
in the body of
the loop (assuming that Cur is the loop parameter and Stop
is the cursor that you want to stop at).
{
AI95-00302-03}
For any two elements
E1 and
E2, the boolean values (
E1
<
E2) and (Key(
E1) < Key(
E2)) are expected
to be equal. If the actuals for Key or Generic_Keys."<"
behave in some other manner, the behavior of this package is unspecified.
Which subprograms of this package call Key and Generic_Keys."<",
and how many times the functions are called, is unspecified.
{
AI95-00302-03}
In addition to the semantics described in
A.18.7,
the subprograms in package Generic_Keys named Floor and Ceiling, are
equivalent to the corresponding subprograms in the parent package, with
the difference that the Key subprogram parameter is compared to elements
in the container using the Key and "<" generic formal functions.
The function named Equivalent_Keys in package Generic_Keys returns True
if both Left < Right and Right < Left return False using the generic
formal "<" operator, and returns True otherwise.
Implementation Advice
{
AI95-00302-03}
If
N is the length of a set, then the worst-case time complexity
of the Insert, Include, Replace, Delete, Exclude and Find operations
that take an element parameter should be
O((log
N)**2)
or better. The worst-case time complexity of the subprograms that take
a cursor parameter should be
O(1).
Implementation Advice: The worst-case
time complexity of the Insert, Include, Replace, Delete, Exclude and
Find operations of Containers.Ordered_Sets that take an element parameter
should be O((log N)**2). The worst-case time complexity
of the subprograms of Containers.Ordered_Sets that take a cursor parameter
should be O(1).
Extensions to Ada 95
{
AI95-00302-03}
The generic package Containers.Ordered_Sets is new.
Incompatibilities With Ada 2005
{
AI05-0001-1}
Subprograms Assign and Copy are added to Containers.Ordered_Sets.
If an instance of Containers.Ordered_Sets is referenced in a
use_clause,
and an entity
E with the same
defining_identifier
as a new entity in Containers.Ordered_Sets is defined in a package that
is also referenced in a
use_clause,
the entity
E may no longer be use-visible, resulting in errors.
This should be rare and is easily fixed if it does occur.
Extensions to Ada 2005
{
AI05-0212-1}
Added iterator and indexing support to make ordered
set containers more convenient to use.
Wording Changes from Ada 2005
{
AI05-0044-1}
Correction: Added wording to require the formal function be such
that equal elements are also equivalent.
{
AI05-0044-1}
Correction: Redefined "<" actuals to require a strict
weak ordering; the old definition allowed indeterminant comparisons that
would not have worked in a container.
{
AI05-0084-1}
Correction: Added a pragma Remote_Types so that containers can
be used in distributed programs.
Ada 2005 and 2012 Editions sponsored in part by Ada-Europe