Compounds | |||
![]() | ![]() | class | vector |
Functions | |||
![]() | ![]() | template<class T, class Allocator> bool | operator== (const vector<T,Allocator> &x, const vector<T,Allocator> &y) |
![]() | ![]() | template<class T, class Allocator> bool | operator< (const vector<T,Allocator> &x, const vector<T,Allocator> &y) |
![]() | ![]() | template<class T, class Allocator> bool | operator!= (const vector<T,Allocator> &x, const vector<T,Allocator> &y) |
![]() | ![]() | template<class T, class Allocator> bool | operator> (const vector<T,Allocator> &x, const vector<T,Allocator> &y) |
![]() | ![]() | template<class T, class Allocator> bool | operator>= (const vector<T,Allocator> &x, const vector<T,Allocator> &y) |
![]() | ![]() | template<class T, class Allocator> bool | operator<= (const vector<T,Allocator> &x, const vector<T,Allocator> &y) |
![]() | ![]() | template<class T, class Allocator> void | swap (vector<T,Allocator> &x, vector<T,Allocator>& y) |
![]() | ![]() | template<class Allocator> bool | operator== (const vector<bool,Allocator> &x, const vector<bool,Allocator> &y) |
![]() | ![]() | template<class Allocator> bool | operator< (const vector<bool,Allocator> &x, const vector<bool,Allocator> &y) |
![]() | ![]() | template<class Allocator> bool | operator!= (const vector<bool,Allocator> &x, const vector<bool,Allocator> &y) |
![]() | ![]() | template<class Allocator> bool | operator> (const vector<bool,Allocator> &x, const vector<bool,Allocator> &y) |
![]() | ![]() | template<class Allocator> bool | operator>= (const vector<bool,Allocator> &x, const vector<bool,Allocator> &y) |
![]() | ![]() | template<class Allocator> bool | operator<= (const vector<bool,Allocator> &x, const vector<bool,Allocator> &y) |
![]() | ![]() | template<class Allocator> void | swap (vector<bool,Allocator> &x, vector<bool,Allocator> &y) |
{ return x.size() == y.size() && equal(x.begin(),x.end(),y.begin()); }
{ return lexicographical_compare(x.begin(), x.end(), y.begin(), y.end()); }
{ return !(x == y); }
{ return y < x; }
{ return !(x < y); }
{ return !(y < x); }
{ x.swap(y); }
{ return x.size() == y.size() && equal(x.begin(),x.end(),y.begin()); }
{ return lexicographical_compare(x.begin(), x.end(), y.begin(), y.end()); }
{ return !(x == y); }
{ return y < x; }
{ return !(x < y); }
{ return !(y < x); }
{ x.swap(y); }