Standard C++ Library Reference ISO/IEC (VERSION3)
operator>
template<class Ty, class Alloc>
 bool operator>(
 const vector <Ty, Alloc>& left,
 const vector <Ty, Alloc>& right);
The template function returns right < left.
operator>=
template<class Ty, class Alloc>
 bool operator>=(
 const vector <Ty, Alloc>& left,
 const vector <Ty, Alloc>& right);
The template function returns !(left < right).
swap
template<class Ty, class Alloc>
 void swap(
 vector <Ty, Alloc>& left,
 vector <Ty, Alloc>& right);
The template function executes left.swap(right).
vector
allocator_type · assign · at · back · begin · capacity · clear ·
const_iterator · const_pointer · const_reference ·
const_reverse_iterator · difference_type · empty · end · erase ·
front · get_allocator · insert · iterator · max_size ·
operator[] · pointer · pop_back · push_back · rbegin · reference
· rend · reserve · resize · reverse_iterator · size · size_type
· swap · value_type · vector
template<class Ty, class Alloc = allocator<Ty> >
 class vector {
public:
 typedef Alloc allocator_type;










