0
votes
1answer
817 views
34
votes
7answers
2k views
Examples of “modern c++” in action?
For new and completely revised tricks and dark corners of STL go here: Hidden Features …
6
votes
Operator overloading for C++ maps
These are typecast operators, so you can do this:
{
key_t key = iter;
ipdc_t *val = iter;
}
Or, since ipdc_map_template::iterator is a subcl …
6
votes
Is Iterator initialization inside for loop considered bad style, and why?
Another alternative is to use a foreach macro, for example boost foreach:
BOOST_FOREACH( Cont …
