| 336 | } |
| 337 | |
| 338 | std::optional<const Entry*> GetEntryForKey(ByType key) const { |
| 339 | auto e = entries_.find(key); |
| 340 | return entries_.end() == e ? std::nullopt : std::optional<const Entry*>(&e->second); |
| 341 | } |
| 342 | |
| 343 | bool RemoveEntriesWithLesserTime(OnType ts) { |
| 344 | DEBUG_SYNC(node_, "memo ", index_, " remove: ts=", ts, DEBUG_MANIP(std::endl)); |
no test coverage detected