Merge pull request #920 from AlexandreRouma/new_recorder

New recorder
This commit is contained in:
AlexandreRouma
2023-01-02 02:37:15 +01:00
committed by GitHub
6 changed files with 810 additions and 430 deletions

View File

@ -52,6 +52,10 @@ public:
return keys.size();
}
bool empty() {
return keys.empty();
}
bool keyExists(K key) {
if (std::find(keys.begin(), keys.end(), key) != keys.end()) { return true; }
return false;