So I understand using var in C# makes sense because you have anonymous types that are compiler derived. C++ doesn\'t seem to have this feature (unless I\'m wron
var
syntactic sugar
I rather say
auto i = mapping.begin();
over
std::map::iterator i = mapping.begin();