Standard C++ Library Reference ISO/IEC (VERSION3)
Next
<vector>
Include the STL standard header <vector> to define the container template class vector
and several supporting templates.
namespace std {
template<class Ty, class Alloc>
 class vector;
template<class Alloc>
 class vector<bool>;
 // TEMPLATE FUNCTIONS
template<class Ty, class Alloc>
 bool operator==(
 const vector<Ty, Alloc>& left,
 const vector<Ty, Alloc>& right);
template<class Ty, class Alloc>
 bool operator!=(
 const vector<Ty, Alloc>& left,
 const vector<Ty, Alloc>& right);
template<class Ty, class Alloc>
 bool operator<(
 const vector<Ty, Alloc>& left,
 const vector<Ty, Alloc>& right);
template<class Ty, class Alloc>
 bool operator>(
 const vector<Ty, Alloc>& left,
 const vector<Ty, Alloc>& right);
template<class Ty, class Alloc>
 bool operator<=(
 const vector<Ty, Alloc>& left,
 const vector<Ty, Alloc>& right);
template<class Ty, class Alloc>
 bool operator>=(
 const vector<Ty, Alloc>& left,
 const vector<Ty, Alloc>& right);
template<class Ty, class Alloc>
 void swap(
 vector<Ty, Alloc>& left,










