See if a cache entry is in the list of entries in the ui.
| 61 | |
| 62 | // See if a cache entry is in the list of entries in the ui. |
| 63 | bool cmCursesMainForm::LookForCacheEntry(std::string const& key) |
| 64 | { |
| 65 | return std::any_of(this->Entries.begin(), this->Entries.end(), |
| 66 | [&key](cmCursesCacheEntryComposite const& entry) { |
| 67 | return key == entry.Key; |
| 68 | }); |
| 69 | } |
| 70 | |
| 71 | // Create new cmCursesCacheEntryComposite entries from the cache |
| 72 | void cmCursesMainForm::InitializeUI() |
no test coverage detected