std::vector
From cppreference.com
Defined in header <vector>
|
||
template< class T, |
||
std::vector
is a container that supports fast random access to the elements and fast insertion or removal of elements at the end of the container. Fast element insertion or removal in the middle of the container is not supported. It is implemented as an contiguous array, which means that pointer arithmetic is fully supported, and a pointer to an element of a vector may be passed to any C function that expects a pointer to an element of an array.
std::vector
meets the requirements of Template:concept, Template:concept, Template:concept and Template:concept.
Contents |
Specializations
The standard library provides a specialization of std::vector
for the type bool, which is optimized for space efficiency.