Iterator concepts | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Iterator primitives | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Algorithm concepts and utilities | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Indirect callable concepts | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Common algorithm requirements | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Utilities | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Iterator adaptors | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
Defined in header <iterator> | ||
template<class Container> std::insert_iterator<Container> | (until C++20) | |
template<class Container> constexprstd::insert_iterator<Container> | (since C++20) | |
inserter
is a convenience function template that constructs astd::insert_iterator for the containerc and its iteratori with the type deduced from the type of the argument.
Contents |
c | - | container that supports aninsert operation |
i | - | iterator inc indicating the insertion position |
Astd::insert_iterator which can be used to insert elements into the containerc at the position indicated byi.
template<class Container>std::insert_iterator<Container> inserter(Container& c,typename Container::iterator i){returnstd::insert_iterator<Container>(c, i);} |
#include <algorithm>#include <iostream>#include <iterator>#include <set>#include <vector> int main(){std::multiset<int> s{1,2,3}; // std::inserter is commonly used with multi-setsstd::fill_n(std::inserter(s, s.end()),5,2); for(int n: s)std::cout<< n<<' ';std::cout<<'\n'; std::vector<int> d{100,200,300};std::vector<int> v{1,2,3,4,5}; // when inserting in a sequence container, insertion point advances// because each std::insert_iterator::operator= updates the target iteratorstd::copy(d.begin(), d.end(), std::inserter(v,std::next(v.begin()))); for(int n: v)std::cout<< n<<' ';std::cout<<'\n';}
Output:
1 2 2 2 2 2 2 3 1 100 200 300 2 3 4 5
The following behavior-changing defect reports were applied retroactively to previously published C++ standards.
DR | Applied to | Behavior as published | Correct behavior |
---|---|---|---|
LWG 561 | C++98 | the type ofi was independent ofContainer | it is the iterator type ofContainer |
iterator adaptor for insertion into a container (class template)[edit] | |
creates astd::back_insert_iterator of type inferred from the argument (function template)[edit] | |
creates astd::front_insert_iterator of type inferred from the argument (function template)[edit] |