| <<< more std::vector access | Index | Getting information >>> |
Adding and removing elements at the end is also made very easy
Note that push_back( ) makes a copy of the argument to be put into the vector
void push_back( T const& x );
void pop_back();
void clear(); //remove everything
| <<< more std::vector access | Index | Getting information >>> |