table_iter_t it = table.begin(); while(it != table.end()) { if (cond) it = table.erase(it); else ++it; }