template<typename Key, typename T>
class PIMapIteratorConst< Key, T >
Java-style iterator for PIMap.
Provides sequential read-only access to keys and values in PIMap. Use the constructor directly or call PIMap::makeIterator().
m[1] = "one";
m[2] = "two";
m[4] = "four";
auto it = m.makeIterator();
while (it.next()) {
piCout << it.key() << it.value();
}
Map of unique keys and associated values.
Definition pimap.h:73
#define piCout
Macro used for conditional (piDebug) output to PICout(StdOut).
Definition picout.h:36