51 typedef typename std::multiset<Key, Pred, A>::iterator
iterator;
57 : std::multiset<Key, Pred, A>(comp, al) {}
59 OdMultiset(
const typename std::multiset<Key, Pred, A>::value_type *first,
60 const typename std::multiset<Key, Pred, A>::value_type *last,
61 const Pred& comp = Pred(),
63 : std::multiset<Key, Pred, A>(first, last, comp, al) {}
71 iterator i = std::multiset<Key, Pred, A>::find (key),
73 while (i != iend && !this->key_comp() (key, *i))
94 while (i != iend && !this->key_comp() (key, *i))
111 while (i != iend && !this->key_comp() (key, *i))
120 #endif // OD_MULTISET_H