Search Results

3
votes

Drawbacks to templates and the STL in C++

For embedded device programming (in my case -- smartphones). Templates are discouraged because of the concern for generated code size (small amount of RAM and disk space). Also the compilers are pr …
1
vote

resize a vector down.. c++

You can swap it with a new vector that has desired capacity. vector< int > tmp; old.swap( tmp ); …
22
votes

Best way to copy a vector to a list in STL ?

Why would you iterate and not use the standard copy algorithm? std::copy( vector.begin(), vector.end(), std::back_inserter( list ) ); …