We Recommend

C++ The Core Language C++ The Core Language
C++: The Core Language is for C programmers transitioning to C++. It's designed to get readers up to speed quickly by covering an essential subset of the language. The subset consists of features without which it's just not C++, and a handful of others that make it a reasonably useful language.


Posted By

yuconner on 12/04/07


Tagged

c iterators


Versions (?)


Who likes this?

3 people have marked this snippet as a favorite

iTony
copyleft
jeffhung


foreach in c++ (#define)


Published in: C++ 


  1. #define foreach(m_itname,m_container) \
  2. for( typeof(m_container.begin()) m_itname=m_container.begin() ; \
  3. m_itname!=m_container.end() ; \
  4. m_itname++ )

Report this snippet 

You need to login to post a comment.