reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
438 assert(I >= this->begin() && "Iterator to erase is out of bounds."); 439 assert(I < this->end() && "Erasing at past-the-end iterator."); 441 iterator N = I; 443 std::move(I+1, this->end(), I); 443 std::move(I+1, this->end(), I);