| 634 | } |
| 635 | |
| 636 | void Erase(TIterator it) { |
| 637 | TItem* item = const_cast<TItem*>(&*it.Iter); |
| 638 | List.Erase(item); |
| 639 | TDeleter::Destroy(item->Value); |
| 640 | Index.erase(it.Iter); |
| 641 | |
| 642 | Y_ASSERT(Index.size() == List.GetSize()); |
| 643 | } |
| 644 | |
| 645 | bool Empty() const { |
| 646 | return Index.empty(); |