<set>
Include the STL
standard header <set>
to define the
container
template classes set
and
multiset
, and their supporting
templates.
namespace std { template<class Key, class Pr, class Alloc> class set; template<class Key, class Pr, class Alloc> class multiset; // TEMPLATE FUNCTIONS template<class Key, class Pr, class Alloc> bool operator==( const set<Key, Pr, Alloc>& left, const set<Key, Pr, Alloc>& right); template<class Key, class Pr, class Alloc> bool operator==( const multiset<Key, Pr, Alloc>& left, const multiset<Key, Pr, Alloc>& right); template<class Key, class Pr, class Alloc> bool operator!=( const set<Key, Pr, Alloc>& left, const set<Key, Pr, Alloc>& right); template<class Key, class Pr, class Alloc> bool operator!=( const multiset<Key, Pr, Alloc>& left, const multiset<Key, Pr, Alloc>& right); template<class Key, class Pr, class Alloc> bool operator<( const set<Key, Pr, Alloc>& left, const set<Key, Pr, Alloc>& right); template<class Key, class Pr, class Alloc> bool operator<( const multiset<Key, Pr, Alloc>& left, const multiset<Key, Pr, Alloc>& right); template<class Key, class Pr, class Alloc> bool operator>( const set<Key, Pr, Alloc>& left, const set<Key, Pr, Alloc>& right); template<class Key, class Pr, class Alloc> bool operator>( const multiset<Key, Pr, Alloc>& left, const multiset<Key, Pr, Alloc>& right); template<class Key, class Pr, class Alloc> bool operator<=( const set<Key, Pr, Alloc>& left, const set<Key, Pr, Alloc>& right); template<class Key, class Pr, class Alloc> bool operator<=( const multiset<Key, Pr, Alloc>& left, const multiset<Key, Pr, Alloc>& right); template<class Key, class Pr, class Alloc> bool operator>=( const set<Key, Pr, Alloc>& left, const set<Key, Pr, Alloc>& right); template<class Key, class Pr, class Alloc> bool operator>=( const multiset<Key, Pr, Alloc>& left, const multiset<Key, Pr, Alloc>& right); template<class Key, class Pr, class Alloc> void swap( set<Key, Pr, Alloc>& left, set<Key, Pr, Alloc>& right); template<class Key, class Pr, class Alloc> void swap( multiset<Key, Pr, Alloc>& left, multiset<Key, Pr, Alloc>& right); };
multiset
allocator_type
· begin
· clear
· const_iterator
· const_pointer
· const_reference
· const_reverse_iterator
· count
· difference_type
· empty
· end
· equal_range
· erase
· find
· get_allocator
· insert
· iterator
· key_comp
· key_compare
· key_type
· lower_bound
· max_size
· multiset
· pointer
· rbegin
· reference
· rend
· reverse_iterator
· size
· size_type
· swap
· upper_bound
· value_comp
· value_compare
· value_type
template<class Key, class Pr = less<Key>, class Alloc = allocator<Key> > class multiset { public: typedef Key key_type; typedef Pr key_compare; typedef Key value_type; typedef Pr value_compare; typedef Allov allocator_type; typedef Alloc::pointer pointer; typedef Alloc::const_pointer const_pointer; typedef Alloc::reference reference; typedef Alloc::const_reference const_reference; typedef T0 iterator; typedef T1 const_iterator; typedef T2 size_type; typedef T3 difference_type; typedef reverse_iterator<const_iterator> const_reverse_iterator; typedef reverse_iterator<iterator> reverse_iterator; multiset(); explicit multiset(const Pr& pred); multiset(const Pr& pred, const Alloc& al); multiset(const multiset& right); template<class InIt> multiset(InIt first, InIt last); template<class InIt> multiset(InIt first, InIt last, const Pr& pred); template<class InIt> multiset(InIt first, InIt last, const Pr& pred, const Alloc& al); iterator begin(); const_iterator begin() const; iterator end(); const_iterator end() const; reverse_iterator rbegin(); const_reverse_iterator rbegin() const; reverse_iterator rend(); const_reverse_iterator rend() const; size_type max_size() const; bool empty() const; Alloc get_allocator() const; iterator insert(const value_type& val); iterator insert(iterator where, const value_type& val); template<class InIt> void insert(InIt first, InIt last); iterator erase(iterator where); iterator erase(iterator first, iterator last); size_type erase(const Key& keyval); void clear(); void swap(multiset& right); key_compare key_comp() const; value_compare value_comp() const; iterator find(const Key& keyval); const_iterator find(const Key& keyval) const; size_type count(const Key& keyval) const; iterator lower_bound(const Key& keyval); const_iterator lower_bound(const Key& keyval) const; iterator upper_bound(const Key& keyval); const_iterator upper_bound(const Key& keyval) const; pair<iterator, iterator> equal_range(const Key& keyval); pair<const_iterator, const_iterator> equal_range(const Key& keyval) const; };
The template class describes an object that controls a
varying-length sequence of elements of type
const Key
.
The sequence is
ordered by the predicate
Pr
.
Each element serves as both a sort key and a value.
The sequence is represented in a way that permits lookup, insertion,
and removal of an arbitrary element with a number of operations
proportional to the logarithm of the number of elements
in the sequence (logarithmic time). Moreover, inserting an element
invalidates no iterators, and removing an element
invalidates only those iterators which point at the removed element.
The object orders the sequence it controls by calling a
stored function object of type Pr
. You access
this stored object by calling the member function
key_comp()
.
Such a function object must impose a
strict weak ordering
on sort keys of type Key
.
For any element X
that precedes
Y
in the sequence,
key_comp()(Y, X)
is false. (For the default function object
less<Key>
,
sort keys never decrease in value.)
Unlike template class set
,
an object of template class multiset
does not ensure that
key_comp()(X, Y)
is true.
(Keys need not be unique.)
The object allocates and frees storage for the sequence it controls
through a stored allocator object
of class Alloc
. Such an allocator object must have
the same external interface as an object of template class
allocator
.
Note that the stored allocator object is not copied when the container
object is assigned.
multiset::allocator_type
typedef Alloc allocator_type;
The type is a synonym for the template parameter Alloc
.
multiset::begin
iterator begin(); const_iterator begin() const;
The member function returns a bidirectional iterator that points at the first element of the sequence (or just beyond the end of an empty sequence).
multiset::clear
void clear();
The member function calls
erase(
begin(),
end())
.
multiset::const_iterator
typedef T1 const_iterator;
The type describes an object that can serve as a constant
bidirectional iterator for the controlled sequence.
It is described here as a
synonym for the implementation-defined type T1
.
multiset::const_pointer
typedef Alloc::const_pointer const_pointer;
The type describes an object that can serve as a constant pointer to an element of the controlled sequence.
multiset::const_reference
typedef Alloc::const_reference const_reference;
The type describes an object that can serve as a constant reference to an element of the controlled sequence.
multiset::const_reverse_iterator
typedef reverse_iterator<const_iterator> const_reverse_iterator;
The type describes an object that can serve as a constant reverse bidirectional iterator for the controlled sequence.
multiset::count
size_type count(const Key& keyval) const;
The member function returns the number of elements
in the range
[lower_bound(keyval),
upper_bound(keyval)).
multiset::difference_type
typedef T3 difference_type;
The signed integer type describes an object that can represent the
difference between the addresses of any two elements in the controlled
sequence. It is described here as a
synonym for the implementation-defined type T3
.
multiset::empty
bool empty() const;
The member function returns true for an empty controlled sequence.
multiset::end
iterator end(); const_iterator end() const;
The member function returns a bidirectional iterator that points just beyond the end of the sequence.
multiset::equal_range
pair<iterator, iterator> equal_range(const Key& keyval); pair<const_iterator, const_iterator> equal_range(const Key& keyval) const;
The member function returns a pair of iterators X
such that X.first ==
lower_bound(keyval)
and X.second ==
upper_bound(keyval)
.
multiset::erase
iterator erase(iterator where); iterator erase(iterator first, iterator last); size_type erase(const Key& keyval);
The first member function removes the element of the controlled
sequence pointed to by where
.
The second member function removes the elements
in the range [first, last)
.
Both return an iterator that designates the first element remaining
beyond any elements removed, or
end()
if no such element exists.
The third member removes
the elements with sort keys in the range
[lower_bound(keyval),
upper_bound(keyval)).
It returns the number of elements it removes.
The member functions never throw an exception.
multiset::find
iterator find(const Key& keyval); const_iterator find(const Key& keyval) const;
The member function returns an iterator that designates
the earliest element in the controlled sequence whose sort key has
equivalent ordering
to keyval
. If no such element exists,
the function returns
end()
.
multiset::get_allocator
Alloc get_allocator() const;
The member function returns the stored allocator object.
multiset::insert
iterator insert(const value_type& val); iterator insert(iterator where, const value_type& val); template<class InIt> void insert(InIt first, InIt last);
The first member function inserts the element val
in the controlled sequence, then returns
the iterator that designates the inserted element.
The second member function returns insert(val)
,
using where
as a starting place within the controlled
sequence to search for the insertion point. (Insertion can occur
in amortized constant time, instead of logarithmic time, if the
insertion point immediately precedes or follows where
.)
The third member function
inserts the sequence of element values,
for each it
in the range [first, last)
,
by calling insert(*where)
.
If an exception is thrown during the insertion of a single element, the container is left unaltered and the exception is rethrown. If an exception is thrown during the insertion of multiple elements, the container is left in a stable but unspecified state and the exception is rethrown.
multiset::iterator
typedef T0 iterator;
The type describes an object that can serve as a bidirectional
iterator for the controlled sequence.
It is described here as a
synonym for the implementation-defined type T0
.
multiset::key_comp
key_compare key_comp() const;
The member function returns the stored function object that determines the order of elements in the controlled sequence. The stored object defines the member function:
bool operator(const Key& left, const Key& right);
which returns true if left
strictly
precedes right
in the sort order.
multiset::key_compare
typedef Pr key_compare;
The type describes a function object that can compare two sort keys to determine the relative order of two elements in the controlled sequence.
multiset::key_type
typedef Key key_type;
The type describes the sort key object which constitutes each element of the controlled sequence.
multiset::lower_bound
iterator lower_bound(const Key& keyval); const_iterator lower_bound(const Key& keyval) const;
The member function returns an iterator that designates the
earliest element X
in the controlled sequence for which
key_comp()(X, keyval)
is
false.
end()
.
multiset::multiset
multiset(); explicit multiset(const Pr& pred); multiset(const Pr& pred, const Alloc& al); multiset(const multiset& right); template<class InIt> multiset(InIt first, InIt last); template<class InIt> multiset(InIt first, InIt last, const Pr& pred); template<class InIt> multiset(InIt first, InIt last, const Pr& pred, const Alloc& al);
All constructors store an
allocator object and
initialize the controlled sequence. The allocator object is the argument
al
, if present. For the copy constructor, it is
right.get_allocator()
.
Otherwise, it is Alloc()
.
All constructors also store a function object that can later
be returned by calling
key_comp()
.
The function object is the argument pred
, if present.
For the copy constructor, it is
right.key_comp()
).
Otherwise, it is Pr()
.
The first three constructors specify an
empty initial controlled sequence. The fourth constructor specifies
a copy of the sequence controlled by right
.
The last three constructors specify the sequence of element values
[first, last)
.
multiset::max_size
size_type max_size() const;
The member function returns the length of the longest sequence that the object can control.
multiset::pointer
typedef Alloc::pointer pointer;
The type describes an object that can serve as a pointer to an element of the controlled sequence.
multiset::rbegin
reverse_iterator rbegin(); const_reverse_iterator rbegin() const;
The member function returns a reverse bidirectional iterator that points just beyond the end of the controlled sequence. Hence, it designates the beginning of the reverse sequence.
multiset::reference
typedef Alloc::reference reference;
The type describes an object that can serve as a reference to an element of the controlled sequence.
multiset::rend
reverse_iterator rend(); const_reverse_iterator rend() const;
The member function returns a reverse bidirectional iterator that points at the first element of the sequence (or just beyond the end of an empty sequence). Hence, it designates the end of the reverse sequence.
multiset::reverse_iterator
typedef reverse_iterator<iterator> reverse_iterator;
The type describes an object that can serve as a reverse bidirectional iterator for the controlled sequence.
multiset::size
size_type size() const;
The member function returns the length of the controlled sequence.
multiset::size_type
typedef T2 size_type;
The unsigned integer type describes an object that can represent the
length of any controlled sequence. It is described here as a
synonym for the implementation-defined type T2
.
multiset::swap
void swap(multiset& right);
The member function swaps the controlled sequences between
*this
and right
. If
get_allocator()
== right.get_allocator()
, it does so in constant time,
it throws an exception only as a result of copying the stored
function object of type Pr
, and it invalidates no references, pointers,
or iterators that designate elements in the two controlled sequences.
Otherwise, it performs a number of element assignments and constructor calls
proportional to the number of elements in the two controlled sequences.
multiset::upper_bound
iterator upper_bound(const Key& keyval) const_iterator upper_bound(const Key& keyval) const;
The member function returns an iterator that designates the
earliest element X
in the controlled sequence for which
key_comp()(keyval, X)
is
true.
end()
.
multiset::value_comp
value_compare value_comp() const;
The member function returns a function object that determines the order of elements in the controlled sequence.
multiset::value_compare
typedef Pr value_compare;
The type describes a function object that can compare two elements as sort keys to determine their relative order in the controlled sequence.
multiset::value_type
typedef Key value_type;
The type describes an element of the controlled sequence.
operator!=
template<class Key, class Pr, class Alloc> bool operator!=( const set <Key, Pr, Alloc>& left, const set <Key, Pr, Alloc>& right); template<class Key, class Pr, class Alloc> bool operator!=( const multiset <Key, Pr, Alloc>& left, const multiset <Key, Pr, Alloc>& right);
The template function returns !(left == right)
.
operator==
template<class Key, class Pr, class Alloc> bool operator==( const set <Key, Pr, Alloc>& left, const set <Key, Pr, Alloc>& right); template<class Key, class Pr, class Alloc> bool operator==( const multiset <Key, Pr, Alloc>& left, const multiset <Key, Pr, Alloc>& right);
The first template function overloads operator==
to compare two objects of template class
set
.
The second template function overloads operator==
to compare two objects of template class
multiset
.
Both functions return
left.size() == right.size() &&
equal(left.
begin(), left.
end(), right.begin())
.
operator<
template<class Key, class Pr, class Alloc> bool operator<( const set <Key, Pr, Alloc>& left, const set <Key, Pr, Alloc>& right); template<class Key, class Pr, class Alloc> bool operator<( const multiset <Key, Pr, Alloc>& left, const multiset <Key, Pr, Alloc>& right);
The first template function overloads operator<
to compare two objects of template class
set
.
The second template function overloads operator<
to compare two objects of template class
multiset
.
Both functions return
lexicographical_compare(left.
begin(), left.
end(), right.begin(), right.end(),
left.value_comp())
.
operator<=
template<class Key, class Pr, class Alloc> bool operator<=( const set <Key, Pr, Alloc>& left, const set <Key, Pr, Alloc>& right); template<class Key, class Pr, class Alloc> bool operator<=( const multiset <Key, Pr, Alloc>& left, const multiset <Key, Pr, Alloc>& right);
The template function returns !(right < left)
.
operator>
template<class Key, class Pr, class Alloc> bool operator>( const set <Key, Pr, Alloc>& left, const set <Key, Pr, Alloc>& right); template<class Key, class Pr, class Alloc> bool operator>( const multiset <Key, Pr, Alloc>& left, const multiset <Key, Pr, Alloc>& right);
The template function returns right < left
.
operator>=
template<class Key, class Pr, class Alloc> bool operator>=( const set <Key, Pr, Alloc>& left, const set <Key, Pr, Alloc>& right); template<class Key, class Pr, class Alloc> bool operator>=( const multiset <Key, Pr, Alloc>& left, const multiset <Key, Pr, Alloc>& right);
The template function returns !(left < right)
.
set
allocator_type
· begin
· clear
· const_iterator
· const_pointer
· const_reference
· const_reverse_iterator
· count
· difference_type
· empty
· end
· equal_range
· erase
· find
· get_allocator
· insert
· iterator
· key_comp
· key_compare
· key_type
· lower_bound
· max_size
· pointer
· rbegin
· reference
· rend
· reverse_iterator
· set
· size
· size_type
· swap
· upper_bound
· value_comp
· value_compare
· value_type
template<class Key, class Pr = less<Key>, class Alloc = allocator<Key> > class set { public: typedef Key key_type; typedef Pr key_compare; typedef Key value_type; typedef Pr value_compare; typedef Alloc allocator_type; typedef Alloc::pointer pointer; typedef Alloc::const_pointer const_pointer; typedef Alloc::reference reference; typedef Alloc::const_reference const_reference; typedef T0 iterator; typedef T1 const_iterator; typedef T2 size_type; typedef T3 difference_type; typedef reverse_iterator<const_iterator> const_reverse_iterator; typedef reverse_iterator<iterator> reverse_iterator; set(); explicit set(const Pr& pred); set(const Pr& pred, const Alloc& al); set(const set& right); template<class InIt> set(InIt first, InIt last); template<class InIt> set(InIt first, InIt last, const Pr& pred); template<class InIt> set(InIt first, InIt last, const Pr& pred, const Alloc& al); iterator begin(); const_iterator begin() const; iterator end(); const_iterator end() const; reverse_iterator rbegin(); const_reverse_iterator rbegin() const; reverse_iterator rend(); const_reverse_iterator rend() const; size_type max_size() const; bool empty() const; Alloc get_allocator() const; pair<iterator, bool> insert(const value_type& val); iterator insert(iterator where, const value_type& val); template<class InIt> void insert(InIt first, InIt last); iterator erase(iterator where); iterator erase(iterator first, iterator last); size_type erase(const Key& keyval); void clear(); void swap(set& right); key_compare key_comp() const; value_compare value_comp() const; iterator find(const Key& keyval); const_iterator find(const Key& keyval) const; size_type count(const Key& keyval) const; iterator lower_bound(const Key& keyval); const_iterator lower_bound(const Key& keyval) const; iterator upper_bound(const Key& keyval); const_iterator upper_bound(const Key& keyval) const; pair<iterator, iterator> equal_range(const Key& keyval); pair<const_iterator, const_iterator> equal_range(const Key& keyval) const; };
The template class describes an object that controls a
varying-length sequence of elements of type const Key
.
The sequence is
ordered by the predicate
Pr
.
Each element serves as both a sort key and a value.
The sequence is represented in a way that permits lookup, insertion,
and removal of an arbitrary element with a number of operations
proportional to the logarithm of the number of elements
in the sequence (logarithmic time). Moreover, inserting an element
invalidates no iterators, and removing an element
invalidates only those iterators which point at the removed element.
The object orders the sequence it controls by calling a
stored function object of type Pr
. You access
this stored object by calling the member function
key_comp()
.
Such a function object must impose a
strict weak ordering
on sort keys of type Key
.
For any element X
that precedes
Y
in the sequence,
key_comp()(Y, X)
is false. (For the default function object
less<Key>
,
sort keys never decrease in value.)
Unlike template class multiset
,
an object of template class set
ensures that
key_comp()(X, Y)
is true.
(Each key is unique.)
The object allocates and frees storage for the sequence it controls
through a stored allocator object
of class Alloc
. Such an allocator object must have
the same external interface as an object of template class
allocator
.
Note that the stored allocator object is not copied when the container
object is assigned.
set::allocator_type
typedef Alloc allocator_type;
The type is a synonym for the template parameter Alloc
.
set::begin
iterator begin(); const_iterator begin() const;
The member function returns a bidirectional iterator that points at the first element of the sequence (or just beyond the end of an empty sequence).
set::clear
void clear();
The member function calls
erase(
begin(),
end())
.
set::const_iterator
typedef T1 const_iterator;
The type describes an object that can serve as a constant
bidirectional iterator for the controlled sequence.
It is described here as a
synonym for the implementation-defined type T1
.
set::const_pointer
typedef Alloc::const_pointer const_pointer;
The type describes an object that can serve as a constant pointer to an element of the controlled sequence.
set::const_reference
typedef Alloc::const_reference const_reference;
The type describes an object that can serve as a constant reference to an element of the controlled sequence.
set::const_reverse_iterator
typedef reverse_iterator<const_iterator> const_reverse_iterator;
The type describes an object that can serve as a constant reverse bidirectional iterator for the controlled sequence.
set::count
size_type count(const Key& keyval) const;
The member function returns the number of elements
in the range
[lower_bound(keyval),
upper_bound(keyval)).
set::difference_type
typedef T3 difference_type;
The signed integer type describes an object that can represent the
difference between the addresses of any two elements in the controlled
sequence. It is described here as a
synonym for the implementation-defined type T3
.
set::empty
bool empty() const;
The member function returns true for an empty controlled sequence.
set::end
iterator end(); const_iterator end() const;
The member function returns a bidirectional iterator that points just beyond the end of the sequence.
set::equal_range
pair<iterator, iterator> equal_range(const Key& keyval); pair<const_iterator, const_iterator> equal_range(const Key& keyval) const;
The member function returns a pair of iterators X
such that X.first ==
lower_bound(keyval)
and X.second ==
upper_bound(keyval)
.
set::erase
iterator erase(iterator where); iterator erase(iterator first, iterator last); size_type erase(const Key& keyval);
The first member function removes the element of the controlled
sequence pointed to by where
.
The second member function removes the elements
in the range [first, last)
.
Both return an iterator that designates the first element remaining
beyond any elements removed, or
end()
if no such element exists.
The third member removes
the elements with sort keys in the range
[lower_bound(keyval),
upper_bound(keyval)).
It returns the number of elements it removes.
The member functions never throw an exception.
set::find
iterator find(const Key& keyval); const_iterator find(const Key& keyval) const;
The member function returns an iterator that designates
the element in the controlled sequence whose sort key has
equivalent ordering
to keyval
. If no such element exists,
the function returns
end()
.
set::get_allocator
Alloc get_allocator() const;
The member function returns the stored allocator object.
set::insert
pair<iterator, bool> insert(const value_type& val); iterator insert(iterator where, const value_type& val); template<class InIt> void insert(InIt first, InIt last);
The first member function determines whether an element X
exists in the sequence whose key has
equivalent ordering
to that of val
. If not, it creates such
an element X
and initializes it with val
.
The function then determines the iterator where
that
designates X
. If an insertion occurred, the function
returns pair(where, true)
.
Otherwise, it returns pair(where, false)
.
The second member function returns insert(val).first
,
using where
as a starting place within the controlled
sequence to search for the insertion point. (Insertion can occur
in amortized constant time, instead of logarithmic time, if the
insertion point immediately precedes or follows where
.)
The third member function
inserts the sequence of element values,
for each where
in the range [first, last)
,
by calling insert(*where)
.
If an exception is thrown during the insertion of a single element, the container is left unaltered and the exception is rethrown. If an exception is thrown during the insertion of multiple elements, the container is left in a stable but unspecified state and the exception is rethrown.
set::iterator
typedef T0 iterator;
The type describes an object that can serve as a bidirectional
iterator for the controlled sequence.
It is described here as a
synonym for the implementation-defined type T0
.
set::key_comp
key_compare key_comp() const;
The member function returns the stored function object that determines the order of elements in the controlled sequence. The stored object defines the member function:
bool operator(const Key& left, const Key& right);
which returns true if left
strictly
precedes right
in the sort order.
set::key_compare
typedef Pr key_compare;
The type describes a function object that can compare two sort keys to determine the relative order of two elements in the controlled sequence.
set::key_type
typedef Key key_type;
The type describes the sort key object which constitutes each element of the controlled sequence.
set::lower_bound
iterator lower_bound(const Key& keyval); const_iterator lower_bound(const Key& keyval) const;
The member function returns an iterator that designates the
earliest element X
in the controlled sequence for which
key_comp()(X, keyval)
is
false.
end()
.
set::max_size
size_type max_size() const;
The member function returns the length of the longest sequence that the object can control.
set::pointer
typedef Alloc::pointer pointer;
The type describes an object that can serve as a pointer to an element of the controlled sequence.
set::rbegin
reverse_iterator rbegin(); const_reverse_iterator rbegin() const;
The member function returns a reverse bidirectional iterator that points just beyond the end of the controlled sequence. Hence, it designates the beginning of the reverse sequence.
set::reference
typedef Alloc::const_reference const_reference;
The type describes an object that can serve as a reference to an element of the controlled sequence.
set::rend
reverse_iterator rend(); const_reverse_iterator rend() const;
The member function returns a reverse bidirectional iterator that points at the first element of the sequence (or just beyond the end of an empty sequence). Hence, it designates the end of the reverse sequence.
set::reverse_iterator
typedef reverse_iterator<iterator> reverse_iterator;
The type describes an object that can serve as a reverse bidirectional iterator for the controlled sequence.
set::set
set(); explicit set(const Pr& pred); set(const Pr& pred, const Alloc& al); set(const set& right); template<class InIt> set(InIt first, InIt last); template<class InIt> set(InIt first, InIt last, const Pr& pred); template<class InIt> set(InIt first, InIt last, const Pr& pred, const Alloc& al);
All constructors store an
allocator object and
initialize the controlled sequence. The allocator object is the argument
al
, if present. For the copy constructor, it is
right.get_allocator()
.
Otherwise, it is Alloc()
.
All constructors also store a function object that can later
be returned by calling
key_comp()
.
The function object is the argument pred
, if present.
For the copy constructor, it is
right.key_comp()
).
Otherwise, it is Pr()
.
The first three constructors specify an
empty initial controlled sequence. The fourth constructor specifies
a copy of the sequence controlled by right
.
The last three constructors specify the sequence of element values
[first, last)
.
set::size
size_type size() const;
The member function returns the length of the controlled sequence.
set::size_type
typedef T2 size_type;
The unsigned integer type describes an object that can represent the
length of any controlled sequence. It is described here as a
synonym for the implementation-defined type T2
.
set::swap
void swap(set& right);
The member function swaps the controlled sequences between
*this
and right
. If
get_allocator()
== right.get_allocator()
, it does so in constant time,
it throws an exception only as a result of copying the stored
function object of type Pr
, and it invalidates no references, pointers,
or iterators that designate elements in the two controlled sequences.
Otherwise, it performs a number of element assignments and constructor calls
proportional to the number of elements in the two controlled sequences.
set::upper_bound
iterator upper_bound(const Key& keyval) const_iterator upper_bound(const Key& keyval) const;
The member function returns an iterator that designates the
earliest element X
in the controlled sequence for which
key_comp()(keyval, X)
is
true.
end()
.
set::value_comp
value_compare value_comp() const;
The member function returns a function object that determines the order of elements in the controlled sequence.
set::value_compare
typedef Pr value_compare;
The type describes a function object that can compare two elements as sort keys to determine their relative order in the controlled sequence.
set::value_type
typedef Key value_type;
The type describes an element of the controlled sequence.
swap
template<class Key, class Pr, class Alloc> void swap( multiset <Key, Pr, Alloc>& left, multiset <Key, Pr, Alloc>& right); template<class Key, class Pr, class Alloc> void swap( set <Key, Pr, Alloc>& left, set <Key, Pr, Alloc>& right);
The template function executes
left.swap(right)
.
See also the Table of Contents and the Index.
Copyright © 1994-2002 by P.J. Plauger. Portions derived from work copyright © 1994 by Hewlett-Packard Company. All rights reserved.