comp.lang.c++ - STL map with "count" method
multimapにはcountなんてメンバ関数があったんですね。
全然使わないので全然知らなかったです。
multimapは、同じキーの要素を複数持つことができるので、
指定したキーの要素をいくつ持ってるか調べるためにcountメンバ関数があるみたいです。
template <class Key, class T, class Compare=less<Key>, class Allocator=allocator<pair<Key, T> > class multimap { public: ... size_type count(const key_type& x) const; ... };