| 739 | } |
| 740 | |
| 741 | std::optional<const MemoStore::Entry*> GetMemoEntryForKey(ByType key) { |
| 742 | return memo_.GetEntryForKey(key); |
| 743 | } |
| 744 | |
| 745 | std::optional<OnType> GetMemoTimeForKey(ByType key) { |
| 746 | auto r = GetMemoEntryForKey(key); |
no test coverage detected