template<typename Key, typename T>
class PIMapIteratorReverse< Key, T >
Java-style reverse iterator for PIMap.
This class used to easy serial reverse access keys and values in PIMap with write 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()) {
it.value().append("_!");
piCout << it.key() << it.value();
}
#define piCout
Macro used for conditional (piDebug) output to PICout(StdOut)
Definition: picout.h:35