Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
1answer
318 views

std::inserter for std::set

If there is any difference between it1 and it2? std::set<sometype> s; auto it1 = std::inserter(s, s.begin()); auto it2 = std::inserter(s, s.end());
4
votes
8answers
2k views

Insert into an STL queue using std::copy

I'd like to use std::copy to insert elements into a queue like this: vector<int> v; v.push_back( 1 ); v.push_back( 2 ); queue<int> q; copy( v.begin(), v.end(), insert_iterator< ...
2
votes
1answer
215 views

How is insert iterator work in c++

there is insert iterator in database template library or other library, Can someone tell me how it work ? Thanks!
0
votes
2answers
204 views

How do I avoid invoking the copy constructor with insertion iterators

template<typename OutputIterator> void BlitSurface::ExtractFrames(OutputIterator it, int frame_width, int frame_height, int ...