| CFx SDK Documentation
    2020SP3
    | 
#include <OdMultiset.h>
 
 | Public Types | |
| typedef std::multiset< Key, Pred, A >::iterator | iterator | 
| typedef std::multiset< Key, Pred, A >::const_iterator | const_iterator | 
| Public Member Functions | |
| OdMultiset (const Pred &comp=Pred(), const A &al=A()) | |
| OdMultiset (const typename std::multiset< Key, Pred, A >::value_type *first, const typename std::multiset< Key, Pred, A >::value_type *last, const Pred &comp=Pred(), const A &al=A()) | |
| iterator | find_ex (const Key &key) | 
| const_iterator | find_ex (const Key &key) const | 
| iterator | find_last (const Key &key) | 
This template class extends the functionality of the standard STL class std::multiset.
The template arguments are the same as that of the STL class std::multiset. Corresponding C++ library: TD_Db <group Other_Classes>
Definition at line 48 of file OdMultiset.h.
| typedef std::multiset<Key, Pred, A>::const_iterator OdMultiset< Key, Pred, A >::const_iterator | 
Definition at line 52 of file OdMultiset.h.
| typedef std::multiset<Key, Pred, A>::iterator OdMultiset< Key, Pred, A >::iterator | 
Definition at line 51 of file OdMultiset.h.
| 
 | inline | 
Definition at line 56 of file OdMultiset.h.
| 
 | inline | 
Definition at line 59 of file OdMultiset.h.
| 
 | inline | 
Returns an iterator addressing the first element in the multiset that has a key equal to the specified key.
| key | [in] Search key. | 
Definition at line 69 of file OdMultiset.h.
| 
 | inline | 
Returns an iterator addressing the first element in the multiset that has a key equal to the specified key.
| key | [in] Search key. \remarks The former is used for constant objects. | 
Definition at line 90 of file OdMultiset.h.
| 
 | inline | 
Returns an iterator addressing the last element in a multiset that has a key equivalent to the specified key.
| key | [in] Search key. | 
Definition at line 107 of file OdMultiset.h.