Tagged Questions
2
votes
1answer
177 views
Erase-remove idiom for deleting in a nested container? (deleting outer ones; C++ STL)
when i'm deleting from a non-nested container like a vector, i'm doing something like:
struct is_to_remove
{
is_to_remove(dynamic_bitset<>& x) : x(x) {}
const bool ...
1
vote
3answers
477 views
Erase-remove idiom: what happens when remove return past-the-end-iterator?
I got this question when I was reading erase-remove idiom (item 32) from Scott Meyers "Effective STL” book.
vector<int> v;
...
v.erase(remove(v.begin(), v.end(), 99), v.end());
remove ...