Searched refs:mset (Results 1 – 1 of 1) sorted by relevance
46 void MultisetDeleteOne(std::multiset<T>* mset, const T& key) { in MultisetDeleteOne() argument47 mset->erase(mset->find(key)); in MultisetDeleteOne()50 const T& MultisetMin(const std::multiset<T>& mset) { in MultisetMin() argument51 return *mset.begin(); in MultisetMin()54 const T& MultisetMax(const std::multiset<T>& mset) { in MultisetMax() argument55 return *mset.rbegin(); in MultisetMax()