SF Bug 603

SF Bug #603 count() is missing in HashMap
https://sourceforge.net/p/poco/bugs/603/
This commit is contained in:
aleks-f
2012-12-02 21:43:16 -06:00
parent cdd17f5203
commit 0c4d2590f7
2 changed files with 7 additions and 0 deletions

View File

@@ -180,6 +180,12 @@ public:
return _table.find(value);
}
std::size_t count(const KeyType& key) const
{
ValueType value(key);
return _table.find(value) != _table.end() ? 1 : 0;
}
std::pair<Iterator, bool> insert(const PairType& pair)
{
ValueType value(pair.first, pair.second);