Inserts the given value value
to the container.
container->push_back(value)
container->push_back(std::move(value))
value | - | the value to insert |
*this
.
#include <iostream> #include <iterator> #include <deque> int main() { std::deque<int> q; std::back_insert_iterator< std::deque<int> > it(q); for (int i=0; i<10; ++i) it = i; // calls q.push_back(i) for (auto& elem : q) std::cout << elem << ' '; }
Output:
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
https://en.cppreference.com/w/cpp/iterator/back_insert_iterator/operator%3D