Category: adaptors |
Component type: type |
The equal_range_view
template is a view presenting
range_views of the values of a
container. The properties of any equal_range_view
instance depend on the properties of the container template
parameter. The interface of equal_range_view
adapts
itself [1] to the referenced container, if this is one of Container,
Forward Container, or Reversible Container.
The equal_range_view
presents the ranges of values,
depending on the equal_fn template parameter.
The properties of the order of elements are the same as those provided by the underlying container, as is the validity of more than one active iterators at any one time.
A equal_range_view
owns its referenced container, if
its base template parameter is aggregated_ownership,
it
merely references its container, if the base template
parameter is referenced_ownership.
Parameter |
Description |
Default |
container |
The view's container type: the type of container referenced by this view |
|
equal_fn |
The view's comparison function. Compares the contents of two iterators for equality. |
|
|
The view's const tag: either |
|
|
The view's directional iterator category |
|
base |
The view's ownership type: the base class that determines if the view references or owns the container |
referenced_ownership |
Defined in the header equal_range_view.hpp.
Member |
Where defined |
Description |
|
A range_view of the elements which satisfiy the function equal_fn. |
|
|
The type of the referenced container. |
|
|
same as value_type |
|
|
Contianer::const_reference |
|
|
An unsigned integral type. |
|
|
A signed integral type. |
|
|
Iterator used to iterate through the view. |
|
|
Const iterator used to iterate through the view. |
|
|
Iterator used to iterate backwards through a container. |
|
|
Const iterator used to iterate backwards through a container. |
|
|
Returns an iterator pointing to the begin of the view. |
|
|
Returns an iterator pointing to the end of the view. |
|
|
Returns a const_iterator pointing to the begin of the view. |
|
|
Returns a const_iterator pointing to the end of the view. |
|
|
Valid for reversible
container's only. Returns a |
|
|
Valid for reversible
container's only. Returns a |
|
|
Valid for reversible
container's only. Returns a |
|
|
Valid for reversible
container's only. Returns a |
|
|
Returns the size of the view. |
|
|
Returns the largest possible size of the view. |
|
|
true if the view's size is 0. |
|
|
Creates an empty view. |
|
|
Creates a view of given container. |
|
|
Swaps the two views. Iterators are invalidated by this operation. For referencing views, the containers themselves are not swapped. |
|
|
Tests two views for equality. This is a global function, not a member function. Views may be equal even if their referenced containers are not. |
|
|
Lexicographical comparison. This is a global function, not a member function. |
VTL Home
Copyright © 1999, 2000
Konrad-Zuse-Zentrum für Informationstechnik Berlin & Gary Powell.
All Rights Reserved.