template<typename Key, typename T>
class PIMapIteratorConstReverse< Key, T >
Java-style reverse iterator for PIMap.
This class used to easy serial reverse access keys and values in PIMap with read only permitions. Use constructor to create iterator, or use PIMap::makeReverseIterator().
m[1] = "one";
m[2] = "two";
m[4] = "four";
auto it = m.makeReverseIterator();
while (it.next()) {
piCout << it.key() << it.value();
}
#define piCout
Macro used for conditional (piDebug) output to PICout(StdOut)
Definition: picout.h:35