#include <FastVector.h>
Public Types | |
| typedef vector< T >::iterator | iterator |
| typedef vector< T >::const_iterator | const_iterator |
Public Member Functions | |
| iterator | fast_erase (const iterator position) |
| iterator | erase (const iterator position) |
| Erase the element at `position' from the vector. | |
| iterator | insert (const T &x) |
|
||||||||||
|
Erase an element from the vector. This is the same as erase(), except that the order of the elements is not preserved. It should be used whenever the order of the elements is not important. |
|
||||||||||
|
Insert x into the vector.
|
1.3.9.1