| 54 | static Iterator End(Impl* impl) { return impl->end(); } |
| 55 | static K Key(Iterator it) { return it->first; } |
| 56 | static PersistentContainerValue Value(Iterator it) { return it->second; } |
| 57 | static PersistentContainerValue Set(Impl* impl, K key, |
| 58 | PersistentContainerValue value) { |
| 59 | std::pair<Iterator, bool> res = impl->insert(std::make_pair(key, value)); |
no outgoing calls
no test coverage detected