Remove unused SeqKeyValue method.

This commit is contained in:
levlam 2022-08-17 16:34:21 +03:00
parent 3318ffdb20
commit 5b22effaa6

View File

@ -51,13 +51,6 @@ class SeqKeyValue {
return it->second;
}
template <class F>
void foreach(const F &f) {
for (auto &it : map_) {
f(it.first, it.second);
}
}
size_t size() const {
return map_.size();
}