#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 |
Functions | |
template<typename Type, typename Alloc> | |
bool | operator== (const vector< Type, Alloc > &x, const vector< Type, Alloc > &y) |
Vector equality comparison. | |
template<typename Type, typename Alloc> | |
bool | operator< (const vector< Type, Alloc > &x, const vector< Type, Alloc > &y) |
Vector ordering relation. | |
template<typename Type, typename Alloc> | |
bool | operator!= (const vector< Type, Alloc > &x, const vector< Type, Alloc > &y) |
Based on operator==. | |
template<typename Type, typename Alloc> | |
bool | operator> (const vector< Type, Alloc > &x, const vector< Type, Alloc > &y) |
Based on operator<. | |
template<typename Type, typename Alloc> | |
bool | operator<= (const vector< Type, Alloc > &x, const vector< Type, Alloc > &y) |
Based on operator<. | |
template<typename Type, typename Alloc> | |
bool | operator>= (const vector< Type, Alloc > &x, const vector< Type, Alloc > &y) |
Based on operator<. | |
template<typename Type, typename Alloc> | |
void | swap (vector< Type, Alloc > &x, vector< Type, Alloc > &y) |
See std::vector::swap(). |
Definition in file stl_vector.h.
|
Based on operator==.
Definition at line 904 of file stl_vector.h. |
|
Vector ordering relation.
< .See std::lexicographical_compare() for how the determination is made. Definition at line 895 of file stl_vector.h. References std::lexicographical_compare(). |
|
Based on operator<.
Definition at line 916 of file stl_vector.h. |
|
Vector equality comparison.
Definition at line 876 of file stl_vector.h. References std::vector< Type, Alloc >::begin(), std::vector< Type, Alloc >::end(), std::equal(), and std::vector< Type, Alloc >::size(). |
|
Based on operator<.
Definition at line 910 of file stl_vector.h. |
|
Based on operator<.
Definition at line 922 of file stl_vector.h. |
|
See std::vector::swap().
Definition at line 928 of file stl_vector.h. References std::vector< Type, Alloc >::swap(). |