| 70 | return it->second; |
| 71 | } |
| 72 | static PersistentContainerValue Remove(Impl* impl, K key) { |
| 73 | Iterator it = impl->find(key); |
| 74 | if (it == impl->end()) return kPersistentContainerNotFound; |
| 75 | PersistentContainerValue value = it->second; |
| 76 | impl->erase(it); |
| 77 | return value; |
| 78 | } |
| 79 | }; |
| 80 | |
| 81 |
no test coverage detected