#include <bits/stl_iterator_base_funcs.h>#include <bits/functexcept.h>#include <bits/concept_check.h>Include dependency graph for stl_vector.h:

This graph shows which files directly or indirectly include this file:

Go to the source code of this file.
Namespaces | |
| namespace | std |
Classes | |
| struct | std::Vector_base< Type, Alloc > |
| struct | std::Vector_base< Type, Alloc >::Vector_impl |
| class | std::vector< Type, Alloc > |
| A standard container which offers fixed time access to individual elements in any order. More... | |
Defines | |
| #define | VECTORH |
Functions | |
| template<typename Type, typename Alloc> | |
| bool | std::operator== (const vector< Type, Alloc > &x, const vector< Type, Alloc > &y) |
| Vector equality comparison. | |
| template<typename Type, typename Alloc> | |
| bool | std::operator< (const vector< Type, Alloc > &x, const vector< Type, Alloc > &y) |
| Vector ordering relation. | |
| template<typename Type, typename Alloc> | |
| bool | std::operator!= (const vector< Type, Alloc > &x, const vector< Type, Alloc > &y) |
| Based on operator==. | |
| template<typename Type, typename Alloc> | |
| bool | std::operator> (const vector< Type, Alloc > &x, const vector< Type, Alloc > &y) |
| Based on operator<. | |
| template<typename Type, typename Alloc> | |
| bool | std::operator<= (const vector< Type, Alloc > &x, const vector< Type, Alloc > &y) |
| Based on operator<. | |
| template<typename Type, typename Alloc> | |
| bool | std::operator>= (const vector< Type, Alloc > &x, const vector< Type, Alloc > &y) |
| Based on operator<. | |
| template<typename Type, typename Alloc> | |
| void | std::swap (vector< Type, Alloc > &x, vector< Type, Alloc > &y) |
| See std::vector::swap(). | |
Definition in file stl_vector.h.
1.5.1