Tagged Questions
2
votes
1answer
180 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 ...