#include <utility_map_data_iterator.h>
List of all members.
Detailed Description
template<class map_iterator>
class OpenTissue::utility::map_data_iterator< map_iterator >
Map Data Iterator. This iteartor is useful for iterating over all elements stored in a map, without getting bothered by key-values.
Example Usage:
std::map< int, char > A; ... add some data... map_data_iterator begin( A.begin() ); map_data_iterator end( A.end() ); map_data_iterator a = begin; for(;a!=end;++a) *a = 'a';
Member Typedef Documentation
template<class map_iterator>
template<class map_iterator>
template<class map_iterator>
Constructor & Destructor Documentation
template<class map_iterator>
template<class map_iterator>
template<class map_iterator>
template<class other_iterator >
Friends And Related Function Documentation
template<class map_iterator>
friend class boost::iterator_core_access [friend] |
The documentation for this class was generated from the following file: