Map
begin() [Map template]
Returns a Map::Iterator
or Map::ConstIterator
for iterating the entries in a map.
// PROTOTYPES
Iterator begin();
ConstIterator begin() const;
// EXAMPLE
Map<String, int> m1({ {"a", 123}, {"b", 456} });
for(auto it = m1.begin(); it != m1.end(); it++) {
Log.info("key=%s value=%d", it->first.c_str(), it->second);
}