write STL container to output stream
//write all elements without any delimiter copy (coll.begin(), coll.end(), ostream_iterator(cout));
reff : josutis, pg. 278
//with boost for_each(coll.begin(), coll.end(), cout << _1);
12390 users tagging and storing useful source code snippets
Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
//write all elements without any delimiter copy (coll.begin(), coll.end(), ostream_iterator(cout));
//with boost for_each(coll.begin(), coll.end(), cout << _1);