<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);
}  // namespace std

multiset


allocator_type · begin · cbegin · cend · clear · const_iterator · const_pointer · const_reference · const_reverse_iterator · count · crbegin · crend · difference_type · emplace · emplace_hint · empty · end · equal_range · erase · find · get_allocator · insert · iterator · key_comp · key_compare · key_type · lower_bound · max_size · multiset · operator= · 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 Alloc allocator_type;
    typedef typename Alloc::pointer pointer;
    typedef typename Alloc::const_pointer const_pointer;
    typedef typename Alloc::reference reference;
    typedef typename Alloc::const_reference const_reference;
    typedef typename Alloc::size_type size_type;
    typedef typename Alloc::difference_type difference_type;

    typedef T0 iterator;
    typedef T1 const_iterator;
    typedef reverse_iterator<const_iterator>
        const_reverse_iterator;
    typedef reverse_iterator<iterator> reverse_iterator;

    multiset();
    explicit multiset(const Alloc& al); [added with C++11]
    explicit multiset(const Pr& pred);
    multiset(const Pr& pred, const Alloc& al);

    multiset(const multiset& right);
    multiset(const multiset& right, const Alloc& al); [added with C++11]
    multiset(multiset&& right); [added with C++11]
    multiset(multiset&& right, const Alloc& al); [added with C++11]

    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);

    multiset(initializer_list<Ty> init) [added with C++11]
    multiset(initializer_list<Ty> init,
        const Pr& pred); [added with C++11]
    multiset(initializer_list<Ty> init,
        const Pr& pred, const Alloc& al); [added with C++11]
    multiset(multiset&& right); [added with C++11]

    multiset& operator=(const multiset& right);
    multiset& operator=(initializer_list<Ty> init) [added with C++11]
    multiset& operator=(multiset&& right); [added with C++11]

    iterator begin() noexcept;
    const_iterator begin() const noexcept;
    iterator end() noexcept;
    const_iterator end() const noexcept;
    reverse_iterator rbegin() noexcept;
    const_reverse_iterator rbegin() const noexcept;
    reverse_iterator rend() noexcept;
    const_reverse_iterator rend() const noexcept;

    const_iterator cbegin() const noexcept; [added with C++11]
    const_iterator cend() const noexcept; [added with C++11]
    const_reverse_iterator crbegin() const noexcept; [added with C++11]
    const_reverse_iterator crend() const noexcept; [added with C++11]

    size_type max_size() const noexcept;
    bool empty() const noexcept;
    Alloc get_allocator() const noexcept;

    iterator insert(const value_type& val);
    iterator insert(const_iterator where, const value_type& val);
    template<class InIt>
        void insert(InIt first, InIt last);
    void insert(initializer_list<Ty> init) [added with C++11]
    iterator insert(value_type&& val); [added with C++11]
    iterator insert(const_iterator where, value_type&& val); [added with C++11]

    template<class... Valty>
        pair<iterator, bool> emplace(Valty&&... val); [added with C++11]
    template<class... Valty>
        iterator emplace_hint(const_iterator where, Valty&&... val); [added with C++11]

    iterator erase(const_iterator where);
    iterator erase(const_iterator first, const_iterator last);
    size_type erase(const Key& keyval);
    void clear() noexcept;

    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.

Inserting and erasing elements preserves the order of elements with equivalent ordering.

multiset::allocator_type

typedef Alloc allocator_type;

The type is a synonym for the template parameter Alloc.

multiset::begin

iterator begin() noexcept;
const_iterator begin() const noexcept;

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::cbegin

const_iterator cbegin() const noexcept; [added with C++11]

The member functions return a bidirectional iterator that points at the first element of the sequence (or just beyond the end of an empty sequence).

multiset::cend

const_reference cend() const noexcept; [added with C++11]

The member functions return a bidirectional iterator that points just beyond the end of the sequence.

multiset::clear

void clear() noexcept;

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 typename 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 typename 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::crbegin

const_reverse_iterator crbegin() const noexcept; [added with C++11]

The member functions return a reverse iterator that points just beyond the end of the controlled sequence. Hence, it designates the beginning of the reverse sequence.

multiset::crend

const_reverse_iterator crend() const noexcept; [added with C++11]

The member functions return a reverse 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::difference_type

typedef typename Alloc::difference_type 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.

multiset::emplace

template<class... Valty>
    pair<iterator, bool> emplace(Valty&&... val); [added with C++11]

The member function effectively returns insert(value_type(forward<Valty>(val)...)), except that the element value is constructed in place.

multiset::emplace_hint

template<class... Valty>
    iterator emplace_hint(const_iterator where, Valty&&... val); [added with C++11]

The member function effectively returns insert(where, value_type(forward<Valty>(val)...)), except that the element value is constructed in place.

multiset::empty

bool empty() const noexcept;

The member function returns true for an empty controlled sequence.

multiset::end

iterator end() noexcept;
const_iterator end() const noexcept;

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(const_iterator where);
iterator erase(const_iterator first, const_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, nor do they alter the order of any remaining elements.

In this implementation, the first two member functions return an iterator that designates the first element remaining beyond any elements removed, or end() if no such element exists.

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 noexcept;

The member function returns the stored allocator object.

multiset::insert

iterator insert(const value_type& val);
iterator insert(const_iterator where, const value_type& val);
template<class InIt>
    void insert(InIt first, InIt last);
void insert(initializer_list<Ty> init) [added with C++11]
iterator insert(value_type&& val); [added with C++11]
iterator insert(const_iterator where, value_type&& val); [added with C++11]

The first member function inserts the element val in the controlled sequence, then returns the iterator that designates the inserted element. Beginning with C++11, insertion occurs at the end of a sequence of elements with equivalent ordering.

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.) Beginning with C++11, insertion occurs at the point nearest the position before where in a sequence of elements with equivalent ordering.

The third member function inserts the sequence of element values, for each it in the range [first, last), by calling insert(*where). Beginning with C++11, insertion of each element occurs at the end of a sequence of elements with equivalent ordering.

The fourth member function inserts the sequence specified by an object of class initializer_list<Ty>.

The last two member functions behave the same as the first two but with an rvalue reference.

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.

The member functions never alter the order of any preexisting elements.

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.

If no such element exists, the function returns end().

multiset::multiset

multiset();
explicit multiset(const Alloc& al); [added with C++11]
explicit multiset(const Pr& pred);
multiset(const Pr& pred, const Alloc& al);

multiset(const multiset& right);
multiset(const multiset& right, const Alloc& al); [added with C++11]
multiset(multiset&& right); [added with C++11]
multiset(multiset&& right, const Alloc& al); [added with C++11]

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);

multiset(initializer_list<Ty> init) [added with C++11]
multiset(initializer_list<Ty> init,
    const Pr& pred); [added with C++11]
multiset(initializer_list<Ty> init,
    const Pr& pred, const Alloc& al); [added with C++11]

All constructors store an allocator object and initialize the controlled sequence. The allocator object is the argument al, if present. Otherwise, for the copy and move constructors, 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 and move constructors, it is right.key_comp()). Otherwise, it is Pr().

The first four constructors specify an empty initial controlled sequence.

The next four constructors specify a copy of the sequence controlled by right. The last two of these constructors are the same as the first two, but with an rvalue reference.

The next three constructors specify the sequence of element values [first, last).

The last three constructors specify the initial controlled sequence with an object of class initializer_list<Ty>.

multiset::max_size

size_type max_size() const noexcept;

The member function returns the length of the longest sequence that the object can control.

multiset::operator=

multiset& operator=(const multiset& right);
multiset& operator=(initializer_list<Ty> init) [added with C++11]
multiset& operator=(multiset&& right); [added with C++11]

The first member operator replaces the controlled sequence with a copy of the sequence controlled by right.

The second member operator replaces the controlled sequence from an object of class initializer_list<Ty>.

The third member operator is the same as the first, but with an rvalue reference.

multiset::pointer

typedef typename 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() noexcept;
const_reverse_iterator rbegin() const noexcept;

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 typename 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() noexcept;
const_reverse_iterator rend() const noexcept;

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 noexcept;

The member function returns the length of the controlled sequence.

multiset::size_type

typedef typename Alloc::size_type size_type;

The unsigned integer type describes an object that can represent the length of any controlled sequence.

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.

If no such element exists, the function returns 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 · cbegin · cend · clear · const_iterator · const_pointer · const_reference · const_reverse_iterator · count · crbegin · crend · difference_type · emplace · emplace_hint · empty · end · equal_range · erase · find · get_allocator · insert · iterator · key_comp · key_compare · key_type · lower_bound · max_size · operator= · 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 typename Alloc::pointer pointer;
    typedef typename Alloc::const_pointer const_pointer;
    typedef typename Alloc::reference reference;
    typedef typename Alloc::const_reference const_reference;
    typedef typename Alloc::size_type size_type;
    typedef typename Alloc::difference_type difference_type;

    typedef T0 iterator;
    typedef T1 const_iterator;
    typedef reverse_iterator<const_iterator>
        const_reverse_iterator;
    typedef reverse_iterator<iterator> reverse_iterator;

    set();
    explicit set(const Alloc& al); [added with C++11]
    explicit set(const Pr& pred);
    set(const Pr& pred, const Alloc& al);

    set(const set& right);
    set(const set& right, const Alloc& al); [added with C++11]
    set(set&& right); [added with C++11]
    set(set&& right, const Alloc& al); [added with C++11]

    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);

    set(initializer_list<Ty> init) [added with C++11]
    set(initializer_list<Ty> init,
        const Pr& pred); [added with C++11]
    set(initializer_list<Ty> init,
        const Pr& pred, const Alloc& al); [added with C++11]
    set(set&& right); [added with C++11]

    set& operator=(const set& right);
    set& operator=(initializer_list<Ty> init) [added with C++11]
    set& operator=(set&& right); [added with C++11]

    iterator begin() noexcept;
    const_iterator begin() const noexcept;
    iterator end() noexcept;
    const_iterator end() const noexcept;
    reverse_iterator rbegin() noexcept;
    const_reverse_iterator rbegin() const noexcept;
    reverse_iterator rend() noexcept;
    const_reverse_iterator rend() const noexcept;

    const_iterator cbegin() const noexcept; [added with C++11]
    const_iterator cend() const noexcept; [added with C++11]
    const_reverse_iterator crbegin() const noexcept; [added with C++11]
    const_reverse_iterator crend() const noexcept; [added with C++11]

    size_type max_size() const noexcept;
    bool empty() const noexcept;
    Alloc get_allocator() const noexcept;

    pair<iterator, bool> insert(const value_type& val);
    iterator insert(const_iterator where, const value_type& val);
    template<class InIt>
        void insert(InIt first, InIt last);
    void insert(initializer_list<Ty> init) [added with C++11]
    pair<iterator, bool> insert(value_type&& val); [added with C++11]
    iterator insert(const_iterator where, value_type&& val); [added with C++11]

    template<class... Valty>
        pair<iterator, bool> emplace(Valty&&... val); [added with C++11]
    template<class... Valty>
        iterator emplace_hint(const_iterator where, Valty&&... val); [added with C++11]

    iterator erase(const_iterator where);
    iterator erase(const_iterator first, const_iterator last);
    size_type erase(const Key& keyval);
    void clear() noexcept;

    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.

set::allocator_type

typedef Alloc allocator_type;

The type is a synonym for the template parameter Alloc.

set::begin

iterator begin() noexcept;
const_iterator begin() const noexcept;

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::cbegin

const_iterator cbegin() const noexcept; [added with C++11]

The member functions return a bidirectional iterator that points at the first element of the sequence (or just beyond the end of an empty sequence).

set::cend

const_reference cend() const; [added with C++11]
noexcept

The member functions return a bidirectional iterator that points just beyond the end of the sequence.

set::clear

void clear() noexcept;

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 typename 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 typename 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::crbegin

const_reverse_iterator crbegin() const noexcept; [added with C++11]

The member functions return a reverse iterator that points just beyond the end of the controlled sequence. Hence, it designates the beginning of the reverse sequence.

set::crend

const_reverse_iterator crend() const noexcept; [added with C++11]

The member functions return a reverse 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::difference_type

typedef typename Alloc::difference_type 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.

set::emplace

template<class... Valty>
    pair<iterator, bool> emplace(Valty&&... val); [added with C++11]

The member function effectively returns insert(value_type(forward<Valty>(val)...)), except that the element value is constructed in place.

set::emplace_hint

template<class... Valty>
    iterator emplace_hint(const_iterator where, Valty&&... val); [added with C++11]

The member function effectively returns insert(where, value_type(forward<Valty>(val)...)), except that the element value is constructed in place.

set::empty

bool empty() const noexcept;

The member function returns true for an empty controlled sequence.

set::end

iterator end() noexcept;
const_iterator end() const noexcept;

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(const_iterator where);
iterator erase(const_iterator first, const_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.

In this implementation, the first two member functions return an iterator that designates the first element remaining beyond any elements removed, or end() if no such element exists.

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 noexcept;

The member function returns the stored allocator object.

set::insert

pair<iterator, bool> insert(const value_type& val);
iterator insert(const_iterator where, const value_type& val);
template<class InIt>
    void insert(InIt first, InIt last);
void insert(initializer_list<Ty> init) [added with C++11]
pair<iterator, bool> insert(value_type&& val); [added with C++11]
iterator insert(const_iterator where, value_type&& val); [added with C++11]

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).

The fourth member function inserts the sequence specified by an object of class initializer_list<Ty>.

The last two member functions behave the same as the first two but with an rvalue reference.

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.

If no such element exists, the function returns end().

set::max_size

size_type max_size() const noexcept;

The member function returns the length of the longest sequence that the object can control.

set::operator=

set& operator=(const set& right);
set& operator=(initializer_list<Ty> init) [added with C++11]
set& operator=(set&& right); [added with C++11]

The first member operator replaces the controlled sequence with a copy of the sequence controlled by right.

The second member operator replaces the controlled sequence from an object of class initializer_list<Ty>.

The third member operator is the same as the first, but with an rvalue reference.

set::pointer

typedef typename 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() noexcept;
const_reverse_iterator rbegin() const noexcept;

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 typename 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() noexcept;
const_reverse_iterator rend() const noexcept;

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 Alloc& al); [added with C++11]
explicit set(const Pr& pred);
set(const Pr& pred, const Alloc& al);

set(const set& right);
set(const set& right, const Alloc& al); [added with C++11]
set(set&& right); [added with C++11]
set(set&& right, const Alloc& al); [added with C++11]

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);

set(initializer_list<Ty> init) [added with C++11]
set(initializer_list<Ty> init,
    const Pr& pred); [added with C++11]
set(initializer_list<Ty> init,
    const Pr& pred, const Alloc& al); [added with C++11]

All constructors store an allocator object and initialize the controlled sequence. The allocator object is the argument al, if present. Otherwise, for the copy and move constructors, 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 and move constructors, it is right.key_comp()). Otherwise, it is Pr().

The first four constructors specify an empty initial controlled sequence.

The next four constructors specify a copy of the sequence controlled by right. The last two of these constructors are the same as the first two, but with an rvalue reference.

The next three constructors specify the sequence of element values [first, last).

The last three constructors specify the initial controlled sequence with an object of class initializer_list<Ty>.

set::size

size_type size() const noexcept;

The member function returns the length of the controlled sequence.

set::size_type

typedef typename Alloc::size_type size_type;

The unsigned integer type describes an object that can represent the length of any controlled sequence.

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.

If no such element exists, the function returns 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 © 1992-2013 by P.J. Plauger. Portions derived from work copyright © 1994 by Hewlett-Packard Company. All rights reserved.