_GLIBCXX_STD::vector< _Tp, _Alloc > Class Template Reference

A standard container which offers fixed time access to individual elements in any order. More...

#include <stl_vector.h>

Inheritance diagram for _GLIBCXX_STD::vector< _Tp, _Alloc >:

_GLIBCXX_STD::_Vector_base< _Tp, _Alloc > List of all members.

Public Types

typedef _Tp value_type
typedef _Alloc::pointer pointer
typedef _Alloc::const_pointer const_pointer
typedef _Alloc::reference reference
typedef _Alloc::const_reference const_reference
typedef __gnu_cxx::__normal_iterator<
pointer, vector_type
iterator
typedef __gnu_cxx::__normal_iterator<
const_pointer, vector_type
const_iterator
typedef std::reverse_iterator<
const_iterator
const_reverse_iterator
typedef std::reverse_iterator<
iterator
reverse_iterator
typedef size_t size_type
typedef ptrdiff_t difference_type
typedef _Base::allocator_type allocator_type

Public Member Functions

 vector (const allocator_type &__a=allocator_type())
 Default constructor creates no elements.

 vector (size_type __n, const value_type &__value, const allocator_type &__a=allocator_type())
 Create a vector with copies of an exemplar element.

 vector (size_type __n)
 Create a vector with default elements.

 vector (const vector &__x)
 Vector copy constructor.

template<typename _InputIterator>  vector (_InputIterator __first, _InputIterator __last, const allocator_type &__a=allocator_type())
 Builds a vector from a range.

 ~vector ()
vectoroperator= (const vector &__x)
 Vector assignment operator.

void assign (size_type __n, const value_type &__val)
 Assigns a given value to a vector.

template<typename _InputIterator> void assign (_InputIterator __first, _InputIterator __last)
 Assigns a range to a vector.

iterator begin ()
const_iterator begin () const
iterator end ()
const_iterator end () const
reverse_iterator rbegin ()
const_reverse_iterator rbegin () const
reverse_iterator rend ()
const_reverse_iterator rend () const
size_type size () const
size_type max_size () const
void resize (size_type __new_size, const value_type &__x)
 Resizes the vector to the specified number of elements.

void resize (size_type __new_size)
 Resizes the vector to the specified number of elements.

size_type capacity () const
bool empty () const
void reserve (size_type __n)
 Attempt to preallocate enough memory for specified number of elements.

reference operator[] (size_type __n)
 Subscript access to the data contained in the vector.

const_reference operator[] (size_type __n) const
 Subscript access to the data contained in the vector.

reference at (size_type __n)
 Provides access to the data contained in the vector.

const_reference at (size_type __n) const
 Provides access to the data contained in the vector.

reference front ()
const_reference front () const
reference back ()
const_reference back () const
void push_back (const value_type &__x)
 Add data to the end of the vector.

void pop_back ()
 Removes last element.

iterator insert (iterator __position, const value_type &__x)
 Inserts given value into vector before specified iterator.

void insert (iterator __position, size_type __n, const value_type &__x)
 Inserts a number of copies of given data into the vector.

template<typename _InputIterator> void insert (iterator __position, _InputIterator __first, _InputIterator __last)
 Inserts a range into the vector.

iterator erase (iterator __position)
 Remove element at given position.

iterator erase (iterator __first, iterator __last)
 Remove a range of elements.

void swap (vector &__x)
 Swaps data with another vector.

void clear ()

Protected Member Functions

void _M_range_check (size_type __n) const
template<typename _ForwardIterator> pointer _M_allocate_and_copy (size_type __n, _ForwardIterator __first, _ForwardIterator __last)
template<typename _Integer> void _M_initialize_dispatch (_Integer __n, _Integer __value, __true_type)
template<typename _InputIterator> void _M_initialize_dispatch (_InputIterator __first, _InputIterator __last, __false_type)
template<typename _InputIterator> void _M_range_initialize (_InputIterator __first, _InputIterator __last, input_iterator_tag)
template<typename _ForwardIterator> void _M_range_initialize (_ForwardIterator __first, _ForwardIterator __last, forward_iterator_tag)
template<typename _Integer> void _M_assign_dispatch (_Integer __n, _Integer __val, __true_type)
template<typename _InputIterator> void _M_assign_dispatch (_InputIterator __first, _InputIterator __last, __false_type)
template<typename _InputIterator> void _M_assign_aux (_InputIterator __first, _InputIterator __last, input_iterator_tag)
template<typename _ForwardIterator> void _M_assign_aux (_ForwardIterator __first, _ForwardIterator __last, forward_iterator_tag)
void _M_fill_assign (size_type __n, const value_type &__val)
template<typename _Integer> void _M_insert_dispatch (iterator __pos, _Integer __n, _Integer __val, __true_type)
template<typename _InputIterator> void _M_insert_dispatch (iterator __pos, _InputIterator __first, _InputIterator __last, __false_type)
template<typename _InputIterator> void _M_range_insert (iterator __pos, _InputIterator __first, _InputIterator __last, input_iterator_tag)
template<typename _ForwardIterator> void _M_range_insert (iterator __pos, _ForwardIterator __first, _ForwardIterator __last, forward_iterator_tag)
void _M_fill_insert (iterator __pos, size_type __n, const value_type &__x)
void _M_insert_aux (iterator __position, const value_type &__x)

Private Types

typedef vector< _Tp, _Alloc > vector_type

Private Member Functions

 __glibcxx_class_requires (_Tp, _SGIAssignableConcept) typedef _Vector_base< _Tp

Private Attributes

_Alloc _Base

Detailed Description

template<typename _Tp, typename _Alloc = allocator<_Tp>>
class _GLIBCXX_STD::vector< _Tp, _Alloc >

A standard container which offers fixed time access to individual elements in any order.

Meets the requirements of a container, a reversible container, and a sequence, including the optional sequence requirements with the exception of push_front and pop_front.

In some terminology a vector can be described as a dynamic C-style array, it offers fast and efficient access to individual elements in any order and saves the user from worrying about memory and size allocation. Subscripting ( [] ) access is also provided as with C-style arrays.

Definition at line 141 of file stl_vector.h.


Member Typedef Documentation

template<typename _Tp, typename _Alloc = allocator<_Tp>>
typedef _Base::allocator_type _GLIBCXX_STD::vector< _Tp, _Alloc >::allocator_type
 

Reimplemented from _GLIBCXX_STD::_Vector_base< _Tp, _Alloc >.

Reimplemented in __gnu_debug_def::vector< _Tp, _Allocator >.

Definition at line 162 of file stl_vector.h.

template<typename _Tp, typename _Alloc = allocator<_Tp>>
typedef __gnu_cxx::__normal_iterator<const_pointer, vector_type> _GLIBCXX_STD::vector< _Tp, _Alloc >::const_iterator
 

Reimplemented in __gnu_debug_def::vector< _Tp, _Allocator >.

Definition at line 157 of file stl_vector.h.

Referenced by _GLIBCXX_STD::vector< _Tp, _Allocator >::begin(), _GLIBCXX_STD::vector< _Tp, _Allocator >::capacity(), _GLIBCXX_STD::vector< bool, _Alloc >::capacity(), and _GLIBCXX_STD::vector< _Tp, _Allocator >::end().

template<typename _Tp, typename _Alloc = allocator<_Tp>>
typedef _Alloc::const_pointer _GLIBCXX_STD::vector< _Tp, _Alloc >::const_pointer
 

Reimplemented in __gnu_debug_def::vector< _Tp, _Allocator >.

Definition at line 152 of file stl_vector.h.

template<typename _Tp, typename _Alloc = allocator<_Tp>>
typedef _Alloc::const_reference _GLIBCXX_STD::vector< _Tp, _Alloc >::const_reference
 

Reimplemented in __gnu_debug_def::vector< _Tp, _Allocator >.

Definition at line 154 of file stl_vector.h.

template<typename _Tp, typename _Alloc = allocator<_Tp>>
typedef std::reverse_iterator<const_iterator> _GLIBCXX_STD::vector< _Tp, _Alloc >::const_reverse_iterator
 

Reimplemented in __gnu_debug_def::vector< _Tp, _Allocator >.

Definition at line 158 of file stl_vector.h.

Referenced by _GLIBCXX_STD::vector< _Tp, _Allocator >::rbegin(), _GLIBCXX_STD::vector< bool, _Alloc >::rbegin(), _GLIBCXX_STD::vector< _Tp, _Allocator >::rend(), and _GLIBCXX_STD::vector< bool, _Alloc >::rend().

template<typename _Tp, typename _Alloc = allocator<_Tp>>
typedef ptrdiff_t _GLIBCXX_STD::vector< _Tp, _Alloc >::difference_type
 

Reimplemented in __gnu_debug_def::vector< _Tp, _Allocator >.

Definition at line 161 of file stl_vector.h.

Referenced by _GLIBCXX_STD::vector< bool, _Alloc >::_M_fill_insert(), _GLIBCXX_STD::vector< bool, _Alloc >::_M_initialize(), _GLIBCXX_STD::vector< bool, _Alloc >::_M_insert_range(), _GLIBCXX_STD::vector< bool, _Alloc >::operator=(), _GLIBCXX_STD::vector< bool, _Alloc >::operator[](), and _GLIBCXX_STD::vector< bool, _Alloc >::resize().

template<typename _Tp, typename _Alloc = allocator<_Tp>>
typedef __gnu_cxx::__normal_iterator<pointer, vector_type> _GLIBCXX_STD::vector< _Tp, _Alloc >::iterator
 

Reimplemented in __gnu_debug_def::vector< _Tp, _Allocator >.

Definition at line 155 of file stl_vector.h.

Referenced by _GLIBCXX_STD::vector< bool, _Alloc >::_M_fill_insert(), _GLIBCXX_STD::vector< bool, _Alloc >::_M_initialize(), _GLIBCXX_STD::vector< bool, _Alloc >::_M_initialize_range(), _GLIBCXX_STD::vector< bool, _Alloc >::_M_insert_aux(), _GLIBCXX_STD::vector< bool, _Alloc >::_M_insert_range(), _GLIBCXX_STD::vector< _Tp, _Alloc >::_M_range_insert(), _GLIBCXX_STD::vector< _Tp, _Allocator >::begin(), _GLIBCXX_STD::vector< _Tp, _Allocator >::end(), and _GLIBCXX_STD::vector< bool, _Alloc >::reserve().

template<typename _Tp, typename _Alloc = allocator<_Tp>>
typedef _Alloc::pointer _GLIBCXX_STD::vector< _Tp, _Alloc >::pointer
 

Reimplemented in __gnu_debug_def::vector< _Tp, _Allocator >.

Definition at line 151 of file stl_vector.h.

template<typename _Tp, typename _Alloc = allocator<_Tp>>
typedef _Alloc::reference _GLIBCXX_STD::vector< _Tp, _Alloc >::reference
 

Reimplemented in __gnu_debug_def::vector< _Tp, _Allocator >.

Definition at line 153 of file stl_vector.h.

template<typename _Tp, typename _Alloc = allocator<_Tp>>
typedef std::reverse_iterator<iterator> _GLIBCXX_STD::vector< _Tp, _Alloc >::reverse_iterator
 

Reimplemented in __gnu_debug_def::vector< _Tp, _Allocator >.

Definition at line 159 of file stl_vector.h.

Referenced by _GLIBCXX_STD::vector< _Tp, _Allocator >::rbegin(), _GLIBCXX_STD::vector< bool, _Alloc >::rbegin(), _GLIBCXX_STD::vector< _Tp, _Allocator >::rend(), and _GLIBCXX_STD::vector< bool, _Alloc >::rend().

template<typename _Tp, typename _Alloc = allocator<_Tp>>
typedef size_t _GLIBCXX_STD::vector< _Tp, _Alloc >::size_type
 

Reimplemented in __gnu_debug_def::vector< _Tp, _Allocator >.

Definition at line 160 of file stl_vector.h.

Referenced by _GLIBCXX_STD::vector< _Tp, _Alloc >::_M_fill_insert(), _GLIBCXX_STD::vector< _Tp, _Alloc >::_M_range_insert(), _GLIBCXX_STD::vector< _Tp, _Allocator >::capacity(), _GLIBCXX_STD::vector< bool, _Alloc >::capacity(), _GLIBCXX_STD::vector< _Tp, _Allocator >::max_size(), _GLIBCXX_STD::vector< bool, _Alloc >::max_size(), _GLIBCXX_STD::vector< _Tp, _Allocator >::size(), and _GLIBCXX_STD::vector< bool, _Alloc >::size().

template<typename _Tp, typename _Alloc = allocator<_Tp>>
typedef _Tp _GLIBCXX_STD::vector< _Tp, _Alloc >::value_type
 

Reimplemented in __gnu_debug_def::vector< _Tp, _Allocator >.

Definition at line 150 of file stl_vector.h.

Referenced by _GLIBCXX_STD::vector< _Tp, _Allocator >::resize().

template<typename _Tp, typename _Alloc = allocator<_Tp>>
typedef vector<_Tp, _Alloc> _GLIBCXX_STD::vector< _Tp, _Alloc >::vector_type [private]
 

Definition at line 147 of file stl_vector.h.


Constructor & Destructor Documentation

template<typename _Tp, typename _Alloc = allocator<_Tp>>
_GLIBCXX_STD::vector< _Tp, _Alloc >::vector const allocator_type __a = allocator_type()  )  [inline, explicit]
 

Default constructor creates no elements.

Definition at line 181 of file stl_vector.h.

template<typename _Tp, typename _Alloc = allocator<_Tp>>
_GLIBCXX_STD::vector< _Tp, _Alloc >::vector size_type  __n,
const value_type __value,
const allocator_type __a = allocator_type()
[inline]
 

Create a vector with copies of an exemplar element.

Parameters:
n The number of elements to initially create.
value An element to copy.
This constructor fills the vector with n copies of value.

Definition at line 191 of file stl_vector.h.

template<typename _Tp, typename _Alloc = allocator<_Tp>>
_GLIBCXX_STD::vector< _Tp, _Alloc >::vector size_type  __n  )  [inline, explicit]
 

Create a vector with default elements.

Parameters:
n The number of elements to initially create.
This constructor fills the vector with n copies of a default-constructed element.

Definition at line 205 of file stl_vector.h.

template<typename _Tp, typename _Alloc = allocator<_Tp>>
_GLIBCXX_STD::vector< _Tp, _Alloc >::vector const vector< _Tp, _Alloc > &  __x  )  [inline]
 

Vector copy constructor.

Parameters:
x A vector of identical element and allocator types.
The newly-created vector uses a copy of the allocation object used by x. All the elements of x are copied, but any extra memory in x (for fast expansion) will not be copied.

Definition at line 219 of file stl_vector.h.

template<typename _Tp, typename _Alloc = allocator<_Tp>>
template<typename _InputIterator>
_GLIBCXX_STD::vector< _Tp, _Alloc >::vector _InputIterator  __first,
_InputIterator  __last,
const allocator_type __a = allocator_type()
[inline]
 

Builds a vector from a range.

Parameters:
first An input iterator.
last An input iterator.
Create a vector consisting of copies of the elements from [first,last).

If the iterators are forward, bidirectional, or random-access, then this will call the elements' copy constructor N times (where N is distance(first,last)) and do no memory reallocation. But if only input iterators are used, then this will do at most 2N calls to the copy constructor, and logN memory reallocations.

Definition at line 241 of file stl_vector.h.

template<typename _Tp, typename _Alloc = allocator<_Tp>>
_GLIBCXX_STD::vector< _Tp, _Alloc >::~vector  )  [inline]
 

The dtor only erases the elements, and note that if the elements themselves are pointers, the pointed-to memory is not touched in any way. Managing the pointer is the user's responsibilty.

Reimplemented in __gnu_debug_def::vector< _Tp, _Allocator >.

Definition at line 256 of file stl_vector.h.


Member Function Documentation

template<typename _Tp, typename _Alloc = allocator<_Tp>>
_GLIBCXX_STD::vector< _Tp, _Alloc >::__glibcxx_class_requires _Tp  ,
_SGIAssignableConcept 
[private]
 

template<typename _Tp, typename _Alloc = allocator<_Tp>>
template<typename _ForwardIterator>
pointer _GLIBCXX_STD::vector< _Tp, _Alloc >::_M_allocate_and_copy size_type  __n,
_ForwardIterator  __first,
_ForwardIterator  __last
[inline, protected]
 

Definition at line 712 of file stl_vector.h.

Referenced by _GLIBCXX_STD::vector< _Tp, _Alloc >::_M_assign_aux(), _GLIBCXX_STD::vector< _Tp, _Alloc >::operator=(), and _GLIBCXX_STD::vector< _Tp, _Alloc >::reserve().

template<typename _Tp, typename _Alloc>
template<typename _ForwardIterator>
void _GLIBCXX_STD::vector< _Tp, _Alloc >::_M_assign_aux _ForwardIterator  __first,
_ForwardIterator  __last,
forward_iterator_tag 
[protected]
 

Definition at line 196 of file vector.tcc.

References std::_Destroy(), _GLIBCXX_STD::vector< _Tp, _Alloc >::_M_allocate_and_copy(), _GLIBCXX_STD::_Vector_base< _Tp, _Alloc >::_M_deallocate(), std::advance(), _GLIBCXX_STD::vector< _Tp, _Alloc >::capacity(), std::copy(), std::distance(), _GLIBCXX_STD::vector< _Tp, _Alloc >::end(), _GLIBCXX_STD::vector< _Tp, _Alloc >::size(), and std::uninitialized_copy().

template<typename _Tp, typename _Alloc>
template<typename _InputIterator>
void _GLIBCXX_STD::vector< _Tp, _Alloc >::_M_assign_aux _InputIterator  __first,
_InputIterator  __last,
input_iterator_tag 
[protected]
 

Definition at line 182 of file vector.tcc.

References _GLIBCXX_STD::vector< _Tp, _Alloc >::begin(), _GLIBCXX_STD::vector< _Tp, _Alloc >::end(), _GLIBCXX_STD::vector< _Tp, _Alloc >::erase(), and _GLIBCXX_STD::vector< _Tp, _Alloc >::insert().

Referenced by _GLIBCXX_STD::vector< _Tp, _Allocator >::_M_assign_dispatch(), and _GLIBCXX_STD::vector< bool, _Alloc >::_M_assign_dispatch().

template<typename _Tp, typename _Alloc = allocator<_Tp>>
template<typename _InputIterator>
void _GLIBCXX_STD::vector< _Tp, _Alloc >::_M_assign_dispatch _InputIterator  __first,
_InputIterator  __last,
__false_type 
[inline, protected]
 

Definition at line 792 of file stl_vector.h.

template<typename _Tp, typename _Alloc = allocator<_Tp>>
template<typename _Integer>
void _GLIBCXX_STD::vector< _Tp, _Alloc >::_M_assign_dispatch _Integer  __n,
_Integer  __val,
__true_type 
[inline, protected]
 

Definition at line 783 of file stl_vector.h.

Referenced by _GLIBCXX_STD::vector< _Tp, _Allocator >::assign(), and _GLIBCXX_STD::vector< bool, _Alloc >::assign().

template<typename _Tp, typename _Alloc = allocator<_Tp>>
void _GLIBCXX_STD::vector< _Tp, _Alloc >::_M_fill_assign size_type  __n,
const value_type __val
[protected]
 

Referenced by _GLIBCXX_STD::vector< _Tp, _Allocator >::_M_assign_dispatch(), _GLIBCXX_STD::vector< bool, _Alloc >::_M_assign_dispatch(), _GLIBCXX_STD::vector< _Tp, _Allocator >::assign(), and _GLIBCXX_STD::vector< bool, _Alloc >::assign().

template<typename _Tp, typename _Alloc>
void _GLIBCXX_STD::vector< _Tp, _Alloc >::_M_fill_insert iterator  __pos,
size_type  __n,
const value_type __x
[protected]
 

Definition at line 275 of file vector.tcc.

References __throw_exception_again, std::_Destroy(), _GLIBCXX_STD::_Vector_base< _Tp, _Alloc >::_M_deallocate(), _GLIBCXX_STD::vector< _Tp, _Alloc >::begin(), std::copy_backward(), _GLIBCXX_STD::vector< _Tp, _Alloc >::end(), std::fill(), std::max(), _GLIBCXX_STD::vector< _Tp, _Alloc >::size(), _GLIBCXX_STD::vector< _Tp, _Alloc >::size_type, std::uninitialized_copy(), and std::uninitialized_fill_n().

Referenced by _GLIBCXX_STD::vector< _Tp, _Allocator >::_M_insert_dispatch(), _GLIBCXX_STD::vector< bool, _Alloc >::_M_insert_dispatch(), _GLIBCXX_STD::vector< _Tp, _Allocator >::insert(), and _GLIBCXX_STD::vector< bool, _Alloc >::insert().

template<typename _Tp, typename _Alloc = allocator<_Tp>>
template<typename _InputIterator>
void _GLIBCXX_STD::vector< _Tp, _Alloc >::_M_initialize_dispatch _InputIterator  __first,
_InputIterator  __last,
__false_type 
[inline, protected]
 

Definition at line 745 of file stl_vector.h.

template<typename _Tp, typename _Alloc = allocator<_Tp>>
template<typename _Integer>
void _GLIBCXX_STD::vector< _Tp, _Alloc >::_M_initialize_dispatch _Integer  __n,
_Integer  __value,
__true_type 
[inline, protected]
 

Definition at line 734 of file stl_vector.h.

Referenced by _GLIBCXX_STD::vector< _Tp, _Allocator >::vector(), and _GLIBCXX_STD::vector< bool, _Alloc >::vector().

template<typename _Tp, typename _Alloc = allocator<_Tp>>
void _GLIBCXX_STD::vector< _Tp, _Alloc >::_M_insert_aux iterator  __position,
const value_type __x
[protected]
 

Referenced by _GLIBCXX_STD::vector< _Tp, _Alloc >::insert(), _GLIBCXX_STD::vector< bool, _Alloc >::insert(), _GLIBCXX_STD::vector< _Tp, _Allocator >::push_back(), and _GLIBCXX_STD::vector< bool, _Alloc >::push_back().

template<typename _Tp, typename _Alloc = allocator<_Tp>>
template<typename _InputIterator>
void _GLIBCXX_STD::vector< _Tp, _Alloc >::_M_insert_dispatch iterator  __pos,
_InputIterator  __first,
_InputIterator  __last,
__false_type 
[inline, protected]
 

Definition at line 833 of file stl_vector.h.

template<typename _Tp, typename _Alloc = allocator<_Tp>>
template<typename _Integer>
void _GLIBCXX_STD::vector< _Tp, _Alloc >::_M_insert_dispatch iterator  __pos,
_Integer  __n,
_Integer  __val,
__true_type 
[inline, protected]
 

Definition at line 823 of file stl_vector.h.

Referenced by _GLIBCXX_STD::vector< _Tp, _Allocator >::insert(), and _GLIBCXX_STD::vector< bool, _Alloc >::insert().

template<typename _Tp, typename _Alloc = allocator<_Tp>>
void _GLIBCXX_STD::vector< _Tp, _Alloc >::_M_range_check size_type  __n  )  const [inline, protected]
 

Definition at line 481 of file stl_vector.h.

Referenced by _GLIBCXX_STD::vector< _Tp, _Allocator >::at(), and _GLIBCXX_STD::vector< bool, _Alloc >::at().

template<typename _Tp, typename _Alloc = allocator<_Tp>>
template<typename _ForwardIterator>
void _GLIBCXX_STD::vector< _Tp, _Alloc >::_M_range_initialize _ForwardIterator  __first,
_ForwardIterator  __last,
forward_iterator_tag 
[inline, protected]
 

Definition at line 766 of file stl_vector.h.

template<typename _Tp, typename _Alloc = allocator<_Tp>>
template<typename _InputIterator>
void _GLIBCXX_STD::vector< _Tp, _Alloc >::_M_range_initialize _InputIterator  __first,
_InputIterator  __last,
input_iterator_tag 
[inline, protected]
 

Definition at line 756 of file stl_vector.h.

Referenced by _GLIBCXX_STD::vector< _Tp, _Allocator >::_M_initialize_dispatch().

template<typename _Tp, typename _Alloc>
template<typename _ForwardIterator>
void _GLIBCXX_STD::vector< _Tp, _Alloc >::_M_range_insert iterator  __pos,
_ForwardIterator  __first,
_ForwardIterator  __last,
forward_iterator_tag 
[protected]
 

Definition at line 351 of file vector.tcc.

References __throw_exception_again, std::_Destroy(), _GLIBCXX_STD::_Vector_base< _Tp, _Alloc >::_M_deallocate(), std::advance(), std::copy(), std::copy_backward(), std::distance(), _GLIBCXX_STD::vector< _Tp, _Alloc >::end(), _GLIBCXX_STD::vector< _Tp, _Alloc >::iterator, std::max(), _GLIBCXX_STD::vector< _Tp, _Alloc >::size(), _GLIBCXX_STD::vector< _Tp, _Alloc >::size_type, and std::uninitialized_copy().

template<typename _Tp, typename _Alloc>
template<typename _InputIterator>
void _GLIBCXX_STD::vector< _Tp, _Alloc >::_M_range_insert iterator  __pos,
_InputIterator  __first,
_InputIterator  __last,
input_iterator_tag 
[protected]
 

Definition at line 337 of file vector.tcc.

References _GLIBCXX_STD::vector< _Tp, _Alloc >::insert().

Referenced by _GLIBCXX_STD::vector< _Tp, _Allocator >::_M_insert_dispatch().

template<typename _Tp, typename _Alloc = allocator<_Tp>>
template<typename _InputIterator>
void _GLIBCXX_STD::vector< _Tp, _Alloc >::assign _InputIterator  __first,
_InputIterator  __last
[inline]
 

Assigns a range to a vector.

Parameters:
first An input iterator.
last An input iterator.
This function fills a vector with copies of the elements in the range [first,last).

Note that the assignment completely changes the vector and that the resulting vector's size is the same as the number of elements assigned. Old data may be lost.

Reimplemented in __gnu_debug_def::vector< _Tp, _Allocator >.

Definition at line 297 of file stl_vector.h.

template<typename _Tp, typename _Alloc = allocator<_Tp>>
void _GLIBCXX_STD::vector< _Tp, _Alloc >::assign size_type  __n,
const value_type __val
[inline]
 

Assigns a given value to a vector.

Parameters:
n Number of elements to be assigned.
val Value to be assigned.
This function fills a vector with n copies of the given value. Note that the assignment completely changes the vector and that the resulting vector's size is the same as the number of elements assigned. Old data may be lost.

Definition at line 280 of file stl_vector.h.

template<typename _Tp, typename _Alloc = allocator<_Tp>>
const_reference _GLIBCXX_STD::vector< _Tp, _Alloc >::at size_type  __n  )  const [inline]
 

Provides access to the data contained in the vector.

Parameters:
n The index of the element for which data should be accessed.
Returns:
Read-only (constant) reference to data.
Exceptions:
std::out_of_range If n is an invalid index.
This function provides for safer data access. The parameter is first checked that it is in the range of the vector. The function throws out_of_range if the check fails.

Definition at line 514 of file stl_vector.h.

template<typename _Tp, typename _Alloc = allocator<_Tp>>
reference _GLIBCXX_STD::vector< _Tp, _Alloc >::at size_type  __n  )  [inline]
 

Provides access to the data contained in the vector.

Parameters:
n The index of the element for which data should be accessed.
Returns:
Read/write reference to data.
Exceptions:
std::out_of_range If n is an invalid index.
This function provides for safer data access. The parameter is first checked that it is in the range of the vector. The function throws out_of_range if the check fails.

Definition at line 500 of file stl_vector.h.

template<typename _Tp, typename _Alloc = allocator<_Tp>>
const_reference _GLIBCXX_STD::vector< _Tp, _Alloc >::back  )  const [inline]
 

Returns a read-only (constant) reference to the data at the last element of the vector.

Reimplemented in __gnu_debug_def::vector< _Tp, _Allocator >.

Definition at line 542 of file stl_vector.h.

template<typename _Tp, typename _Alloc = allocator<_Tp>>
reference _GLIBCXX_STD::vector< _Tp, _Alloc >::back  )  [inline]
 

Returns a read/write reference to the data at the last element of the vector.

Reimplemented in __gnu_debug_def::vector< _Tp, _Allocator >.

Definition at line 535 of file stl_vector.h.

template<typename _Tp, typename _Alloc = allocator<_Tp>>
const_iterator _GLIBCXX_STD::vector< _Tp, _Alloc >::begin  )  const [inline]
 

Returns a read-only (constant) iterator that points to the first element in the vector. Iteration is done in ordinary element order.

Reimplemented in __gnu_debug_def::vector< _Tp, _Allocator >.

Definition at line 322 of file stl_vector.h.

template<typename _Tp, typename _Alloc = allocator<_Tp>>
iterator _GLIBCXX_STD::vector< _Tp, _Alloc >::begin  )  [inline]
 

Returns a read/write iterator that points to the first element in the vector. Iteration is done in ordinary element order.

Reimplemented in __gnu_debug_def::vector< _Tp, _Allocator >.

Definition at line 314 of file stl_vector.h.

Referenced by _GLIBCXX_STD::vector< _Tp, _Alloc >::_M_assign_aux(), _GLIBCXX_STD::vector< bool, _Alloc >::_M_assign_aux(), _GLIBCXX_STD::vector< bool, _Alloc >::_M_fill_assign(), _GLIBCXX_STD::vector< _Tp, _Alloc >::_M_fill_insert(), _GLIBCXX_STD::vector< bool, _Alloc >::_M_fill_insert(), _GLIBCXX_STD::vector< bool, _Alloc >::_M_insert_aux(), _GLIBCXX_STD::vector< bool, _Alloc >::_M_insert_range(), _GLIBCXX_STD::vector< _Tp, _Allocator >::clear(), _GLIBCXX_STD::vector< bool, _Alloc >::clear(), _GLIBCXX_STD::vector< _Tp, _Allocator >::empty(), _GLIBCXX_STD::vector< bool, _Alloc >::empty(), _GLIBCXX_STD::vector< _Tp, _Allocator >::front(), _GLIBCXX_STD::vector< bool, _Alloc >::front(), _GLIBCXX_STD::vector< _Tp, _Alloc >::insert(), _GLIBCXX_STD::vector< bool, _Alloc >::insert(), _GLIBCXX_STD::vector< _Tp, _Alloc >::operator=(), _GLIBCXX_STD::vector< bool, _Alloc >::operator=(), _GLIBCXX_STD::operator==(), _GLIBCXX_STD::vector< _Tp, _Allocator >::operator[](), _GLIBCXX_STD::vector< bool, _Alloc >::operator[](), _GLIBCXX_STD::vector< _Tp, _Allocator >::rend(), _GLIBCXX_STD::vector< bool, _Alloc >::rend(), _GLIBCXX_STD::vector< bool, _Alloc >::reserve(), _GLIBCXX_STD::vector< _Tp, _Allocator >::resize(), _GLIBCXX_STD::vector< bool, _Alloc >::resize(), _GLIBCXX_STD::vector< _Tp, _Allocator >::size(), _GLIBCXX_STD::vector< bool, _Alloc >::size(), _GLIBCXX_STD::vector< _Tp, _Allocator >::vector(), and _GLIBCXX_STD::vector< bool, _Alloc >::vector().

template<typename _Tp, typename _Alloc = allocator<_Tp>>
size_type _GLIBCXX_STD::vector< _Tp, _Alloc >::capacity  )  const [inline]
 

Returns the total number of elements that the vector can hold before needing to allocate more memory.

Definition at line 419 of file stl_vector.h.

Referenced by _GLIBCXX_STD::vector< _Tp, _Alloc >::_M_assign_aux(), _GLIBCXX_STD::vector< bool, _Alloc >::_M_fill_insert(), _GLIBCXX_STD::vector< bool, _Alloc >::_M_insert_range(), _GLIBCXX_STD::vector< _Tp, _Alloc >::operator=(), _GLIBCXX_STD::vector< bool, _Alloc >::operator=(), _GLIBCXX_STD::vector< _Tp, _Alloc >::reserve(), and _GLIBCXX_STD::vector< bool, _Alloc >::reserve().

template<typename _Tp, typename _Alloc = allocator<_Tp>>
void _GLIBCXX_STD::vector< _Tp, _Alloc >::clear  )  [inline]
 

Erases all the elements. Note that this function only erases the elements, and that if the elements themselves are pointers, the pointed-to memory is not touched in any way. Managing the pointer is the user's responsibilty.

Reimplemented in __gnu_debug_def::vector< _Tp, _Allocator >.

Definition at line 701 of file stl_vector.h.

template<typename _Tp, typename _Alloc = allocator<_Tp>>
bool _GLIBCXX_STD::vector< _Tp, _Alloc >::empty  )  const [inline]
 

Returns true if the vector is empty. (Thus begin() would equal end().)

Definition at line 427 of file stl_vector.h.

template<typename _Tp, typename _Alloc = allocator<_Tp>>
const_iterator _GLIBCXX_STD::vector< _Tp, _Alloc >::end  )  const [inline]
 

Returns a read-only (constant) iterator that points one past the last element in the vector. Iteration is done in ordinary element order.

Reimplemented in __gnu_debug_def::vector< _Tp, _Allocator >.

Definition at line 338 of file stl_vector.h.

template<typename _Tp, typename _Alloc = allocator<_Tp>>
iterator _GLIBCXX_STD::vector< _Tp, _Alloc >::end  )  [inline]
 

Returns a read/write iterator that points one past the last element in the vector. Iteration is done in ordinary element order.

Reimplemented in __gnu_debug_def::vector< _Tp, _Allocator >.

Definition at line 330 of file stl_vector.h.

Referenced by _GLIBCXX_STD::vector< _Tp, _Alloc >::_M_assign_aux(), _GLIBCXX_STD::vector< bool, _Alloc >::_M_assign_aux(), _GLIBCXX_STD::vector< bool, _Alloc >::_M_fill_assign(), _GLIBCXX_STD::vector< _Tp, _Alloc >::_M_fill_insert(), _GLIBCXX_STD::vector< bool, _Alloc >::_M_fill_insert(), _GLIBCXX_STD::vector< bool, _Alloc >::_M_insert_aux(), _GLIBCXX_STD::vector< bool, _Alloc >::_M_insert_range(), _GLIBCXX_STD::vector< _Tp, _Alloc >::_M_range_insert(), _GLIBCXX_STD::vector< _Tp, _Allocator >::back(), _GLIBCXX_STD::vector< bool, _Alloc >::back(), _GLIBCXX_STD::vector< _Tp, _Allocator >::clear(), _GLIBCXX_STD::vector< bool, _Alloc >::clear(), _GLIBCXX_STD::vector< _Tp, _Allocator >::empty(), _GLIBCXX_STD::vector< bool, _Alloc >::empty(), _GLIBCXX_STD::vector< _Tp, _Alloc >::erase(), _GLIBCXX_STD::vector< bool, _Alloc >::erase(), _GLIBCXX_STD::vector< _Tp, _Alloc >::insert(), _GLIBCXX_STD::vector< bool, _Alloc >::insert(), _GLIBCXX_STD::vector< _Tp, _Alloc >::operator=(), _GLIBCXX_STD::vector< bool, _Alloc >::operator=(), _GLIBCXX_STD::operator==(), _GLIBCXX_STD::vector< _Tp, _Allocator >::push_back(), _GLIBCXX_STD::vector< bool, _Alloc >::push_back(), _GLIBCXX_STD::vector< _Tp, _Allocator >::rbegin(), _GLIBCXX_STD::vector< bool, _Alloc >::rbegin(), _GLIBCXX_STD::vector< bool, _Alloc >::reserve(), _GLIBCXX_STD::vector< _Tp, _Allocator >::resize(), _GLIBCXX_STD::vector< bool, _Alloc >::resize(), _GLIBCXX_STD::vector< _Tp, _Allocator >::size(), _GLIBCXX_STD::vector< bool, _Alloc >::size(), _GLIBCXX_STD::vector< _Tp, _Allocator >::vector(), and _GLIBCXX_STD::vector< bool, _Alloc >::vector().

template<typename _Tp, typename _Alloc>
vector< _Tp, _Alloc >::iterator _GLIBCXX_STD::vector< _Tp, _Alloc >::erase iterator  __first,
iterator  __last
 

Remove a range of elements.

Parameters:
first Iterator pointing to the first element to be erased.
last Iterator pointing to one past the last element to be erased.
Returns:
An iterator pointing to the element pointed to by last prior to erasing (or end()).
This function will erase the elements in the range [first,last) and shorten the vector accordingly.

Note This operation could be expensive and if it is frequently used the user should consider using std::list. The user is also cautioned that this function only erases the elements, and that if the elements themselves are pointers, the pointed-to memory is not touched in any way. Managing the pointer is the user's responsibilty.

Reimplemented in __gnu_debug_def::vector< _Tp, _Allocator >.

Definition at line 119 of file vector.tcc.

References std::_Destroy(), and _GLIBCXX_STD::vector< _Tp, _Alloc >::end().

template<typename _Tp, typename _Alloc>
vector< _Tp, _Alloc >::iterator _GLIBCXX_STD::vector< _Tp, _Alloc >::erase iterator  __position  ) 
 

Remove element at given position.

Parameters:
position Iterator pointing to element to be erased.
Returns:
An iterator pointing to the next element (or end()).
This function will erase the element at the given position and thus shorten the vector by one.

Note This operation could be expensive and if it is frequently used the user should consider using std::list. The user is also cautioned that this function only erases the element, and that if the element is itself a pointer, the pointed-to memory is not touched in any way. Managing the pointer is the user's responsibilty.

Reimplemented in __gnu_debug_def::vector< _Tp, _Allocator >.

Definition at line 107 of file vector.tcc.

References std::_Destroy(), std::copy(), and _GLIBCXX_STD::vector< _Tp, _Alloc >::end().

Referenced by _GLIBCXX_STD::vector< _Tp, _Alloc >::_M_assign_aux(), _GLIBCXX_STD::vector< bool, _Alloc >::_M_assign_aux(), _GLIBCXX_STD::vector< bool, _Alloc >::_M_fill_assign(), _GLIBCXX_STD::vector< _Tp, _Allocator >::clear(), _GLIBCXX_STD::vector< bool, _Alloc >::clear(), _GLIBCXX_STD::vector< _Tp, _Allocator >::resize(), and _GLIBCXX_STD::vector< bool, _Alloc >::resize().

template<typename _Tp, typename _Alloc = allocator<_Tp>>
const_reference _GLIBCXX_STD::vector< _Tp, _Alloc >::front  )  const [inline]
 

Returns a read-only (constant) reference to the data at the first element of the vector.

Reimplemented in __gnu_debug_def::vector< _Tp, _Allocator >.

Definition at line 528 of file stl_vector.h.

template<typename _Tp, typename _Alloc = allocator<_Tp>>
reference _GLIBCXX_STD::vector< _Tp, _Alloc >::front  )  [inline]
 

Returns a read/write reference to the data at the first element of the vector.

Reimplemented in __gnu_debug_def::vector< _Tp, _Allocator >.

Definition at line 521 of file stl_vector.h.

template<typename _Tp, typename _Alloc = allocator<_Tp>>
template<typename _InputIterator>
void _GLIBCXX_STD::vector< _Tp, _Alloc >::insert iterator  __position,
_InputIterator  __first,
_InputIterator  __last
[inline]
 

Inserts a range into the vector.

Parameters:
position An iterator into the vector.
first An input iterator.
last An input iterator.
This function will insert copies of the data in the range [first,last) into the vector before the location specified by pos.

Note that this kind of operation could be expensive for a vector and if it is frequently used the user should consider using std::list.

Reimplemented in __gnu_debug_def::vector< _Tp, _Allocator >.

Definition at line 630 of file stl_vector.h.

template<typename _Tp, typename _Alloc = allocator<_Tp>>
void _GLIBCXX_STD::vector< _Tp, _Alloc >::insert iterator  __position,
size_type  __n,
const value_type __x
[inline]
 

Inserts a number of copies of given data into the vector.

Parameters:
position An iterator into the vector.
n Number of elements to be inserted.
x Data to be inserted.
This function will insert a specified number of copies of the given data before the location specified by position.

Note that this kind of operation could be expensive for a vector and if it is frequently used the user should consider using std::list.

Definition at line 611 of file stl_vector.h.

template<typename _Tp, typename _Alloc>
vector< _Tp, _Alloc >::iterator _GLIBCXX_STD::vector< _Tp, _Alloc >::insert iterator  __position,
const value_type __x
 

Inserts given value into vector before specified iterator.

Parameters:
position An iterator into the vector.
x Data to be inserted.
Returns:
An iterator that points to the inserted data.
This function will insert a copy of the given value before the specified location. Note that this kind of operation could be expensive for a vector and if it is frequently used the user should consider using std::list.

Definition at line 91 of file vector.tcc.

References std::_Construct(), _GLIBCXX_STD::vector< _Tp, _Alloc >::_M_insert_aux(), _GLIBCXX_STD::vector< _Tp, _Alloc >::begin(), and _GLIBCXX_STD::vector< _Tp, _Alloc >::end().

Referenced by _GLIBCXX_STD::vector< _Tp, _Alloc >::_M_assign_aux(), _GLIBCXX_STD::vector< bool, _Alloc >::_M_assign_aux(), _GLIBCXX_STD::vector< bool, _Alloc >::_M_fill_assign(), _GLIBCXX_STD::vector< bool, _Alloc >::_M_insert_range(), _GLIBCXX_STD::vector< _Tp, _Alloc >::_M_range_insert(), _GLIBCXX_STD::vector< _Tp, _Allocator >::resize(), and _GLIBCXX_STD::vector< bool, _Alloc >::resize().

template<typename _Tp, typename _Alloc = allocator<_Tp>>
size_type _GLIBCXX_STD::vector< _Tp, _Alloc >::max_size  )  const [inline]
 

Returns the size() of the largest possible vector.

Definition at line 379 of file stl_vector.h.

Referenced by _GLIBCXX_STD::vector< _Tp, _Alloc >::reserve(), and _GLIBCXX_STD::vector< bool, _Alloc >::reserve().

template<typename _Tp, typename _Alloc>
vector< _Tp, _Alloc > & _GLIBCXX_STD::vector< _Tp, _Alloc >::operator= const vector< _Tp, _Alloc > &  __x  ) 
 

Vector assignment operator.

Parameters:
x A vector of identical element and allocator types.
All the elements of x are copied, but any extra memory in x (for fast expansion) will not be copied. Unlike the copy constructor, the allocator object is not copied.

Definition at line 130 of file vector.tcc.

References std::_Destroy(), _GLIBCXX_STD::vector< _Tp, _Alloc >::_M_allocate_and_copy(), _GLIBCXX_STD::_Vector_base< _Tp, _Alloc >::_M_deallocate(), _GLIBCXX_STD::vector< _Tp, _Alloc >::begin(), _GLIBCXX_STD::vector< _Tp, _Alloc >::capacity(), std::copy(), _GLIBCXX_STD::vector< _Tp, _Alloc >::end(), _GLIBCXX_STD::vector< _Tp, _Alloc >::size(), and std::uninitialized_copy().

template<typename _Tp, typename _Alloc = allocator<_Tp>>
const_reference _GLIBCXX_STD::vector< _Tp, _Alloc >::operator[] size_type  __n  )  const [inline]
 

Subscript access to the data contained in the vector.

Parameters:
n The index of the element for which data should be accessed.
Returns:
Read-only (constant) reference to data.
This operator allows for easy, array-style, data access. Note that data access with this operator is unchecked and out_of_range lookups are not defined. (For checked lookups see at().)

Reimplemented in __gnu_debug_def::vector< _Tp, _Allocator >.

Definition at line 476 of file stl_vector.h.

template<typename _Tp, typename _Alloc = allocator<_Tp>>
reference _GLIBCXX_STD::vector< _Tp, _Alloc >::operator[] size_type  __n  )  [inline]
 

Subscript access to the data contained in the vector.

Parameters:
n The index of the element for which data should be accessed.
Returns:
Read/write reference to data.
This operator allows for easy, array-style, data access. Note that data access with this operator is unchecked and out_of_range lookups are not defined. (For checked lookups see at().)

Reimplemented in __gnu_debug_def::vector< _Tp, _Allocator >.

Definition at line 462 of file stl_vector.h.

template<typename _Tp, typename _Alloc = allocator<_Tp>>
void _GLIBCXX_STD::vector< _Tp, _Alloc >::pop_back  )  [inline]
 

Removes last element.

This is a typical stack operation. It shrinks the vector by one.

Note that no data is returned, and if the last element's data is needed, it should be retrieved before pop_back() is called.

Reimplemented in __gnu_debug_def::vector< _Tp, _Allocator >.

Definition at line 577 of file stl_vector.h.

template<typename _Tp, typename _Alloc = allocator<_Tp>>
void _GLIBCXX_STD::vector< _Tp, _Alloc >::push_back const value_type __x  )  [inline]
 

Add data to the end of the vector.

Parameters:
x Data to be added.
This is a typical stack operation. The function creates an element at the end of the vector and assigns the given data to it. Due to the nature of a vector this operation can be done in constant time if the vector has preallocated space available.

Definition at line 556 of file stl_vector.h.

Referenced by _GLIBCXX_STD::vector< bool, _Alloc >::_M_initialize_range(), and _GLIBCXX_STD::vector< _Tp, _Allocator >::_M_range_initialize().

template<typename _Tp, typename _Alloc = allocator<_Tp>>
const_reverse_iterator _GLIBCXX_STD::vector< _Tp, _Alloc >::rbegin  )  const [inline]
 

Returns a read-only (constant) reverse iterator that points to the last element in the vector. Iteration is done in reverse element order.

Reimplemented in __gnu_debug_def::vector< _Tp, _Allocator >.

Definition at line 354 of file stl_vector.h.

template<typename _Tp, typename _Alloc = allocator<_Tp>>
reverse_iterator _GLIBCXX_STD::vector< _Tp, _Alloc >::rbegin  )  [inline]
 

Returns a read/write reverse iterator that points to the last element in the vector. Iteration is done in reverse element order.

Reimplemented in __gnu_debug_def::vector< _Tp, _Allocator >.

Definition at line 346 of file stl_vector.h.

template<typename _Tp, typename _Alloc = allocator<_Tp>>
const_reverse_iterator _GLIBCXX_STD::vector< _Tp, _Alloc >::rend  )  const [inline]
 

Returns a read-only (constant) reverse iterator that points to one before the first element in the vector. Iteration is done in reverse element order.

Reimplemented in __gnu_debug_def::vector< _Tp, _Allocator >.

Definition at line 370 of file stl_vector.h.

template<typename _Tp, typename _Alloc = allocator<_Tp>>
reverse_iterator _GLIBCXX_STD::vector< _Tp, _Alloc >::rend  )  [inline]
 

Returns a read/write reverse iterator that points to one before the first element in the vector. Iteration is done in reverse element order.

Reimplemented in __gnu_debug_def::vector< _Tp, _Allocator >.

Definition at line 362 of file stl_vector.h.

template<typename _Tp, typename _Alloc>
void _GLIBCXX_STD::vector< _Tp, _Alloc >::reserve size_type  __n  ) 
 

Attempt to preallocate enough memory for specified number of elements.

Parameters:
n Number of elements required.
Exceptions:
std::length_error If n exceeds max_size().
This function attempts to reserve enough memory for the vector to hold the specified number of elements. If the number requested is more than max_size(), length_error is thrown.

The advantage of this function is that if optimal code is a necessity and the user can determine the number of elements that will be required, the user can reserve the memory in advance, and thus prevent a possible reallocation of memory and copying of vector data.

Reimplemented in __gnu_debug_def::vector< _Tp, _Allocator >.

Definition at line 69 of file vector.tcc.

References __N, std::_Destroy(), _GLIBCXX_STD::vector< _Tp, _Alloc >::_M_allocate_and_copy(), _GLIBCXX_STD::_Vector_base< _Tp, _Alloc >::_M_deallocate(), _GLIBCXX_STD::vector< _Tp, _Alloc >::capacity(), _GLIBCXX_STD::vector< _Tp, _Alloc >::max_size(), and _GLIBCXX_STD::vector< _Tp, _Alloc >::size().

template<typename _Tp, typename _Alloc = allocator<_Tp>>
void _GLIBCXX_STD::vector< _Tp, _Alloc >::resize size_type  __new_size  )  [inline]
 

Resizes the vector to the specified number of elements.

Parameters:
new_size Number of elements the vector should contain.
This function will resize the vector to the specified number of elements. If the number is smaller than the vector's current size the vector is truncated, otherwise the vector is extended and new elements are default-constructed.

Definition at line 412 of file stl_vector.h.

template<typename _Tp, typename _Alloc = allocator<_Tp>>
void _GLIBCXX_STD::vector< _Tp, _Alloc >::resize size_type  __new_size,
const value_type __x
[inline]
 

Resizes the vector to the specified number of elements.

Parameters:
new_size Number of elements the vector should contain.
x Data with which new elements should be populated.
This function will resize the vector to the specified number of elements. If the number is smaller than the vector's current size the vector is truncated, otherwise the vector is extended and new elements are populated with given data.

Definition at line 393 of file stl_vector.h.

Referenced by _GLIBCXX_STD::vector< _Tp, _Allocator >::resize().

template<typename _Tp, typename _Alloc = allocator<_Tp>>
size_type _GLIBCXX_STD::vector< _Tp, _Alloc >::size  )  const [inline]
 

Returns the number of elements in the vector.

Definition at line 375 of file stl_vector.h.

Referenced by _GLIBCXX_STD::vector< _Tp, _Alloc >::_M_assign_aux(), _GLIBCXX_STD::vector< bool, _Alloc >::_M_assign_aux(), _GLIBCXX_STD::vector< bool, _Alloc >::_M_fill_assign(), _GLIBCXX_STD::vector< _Tp, _Alloc >::_M_fill_insert(), _GLIBCXX_STD::vector< bool, _Alloc >::_M_fill_insert(), _GLIBCXX_STD::vector< bool, _Alloc >::_M_insert_aux(), _GLIBCXX_STD::vector< bool, _Alloc >::_M_insert_range(), _GLIBCXX_STD::vector< _Tp, _Allocator >::_M_range_check(), _GLIBCXX_STD::vector< bool, _Alloc >::_M_range_check(), _GLIBCXX_STD::vector< _Tp, _Alloc >::_M_range_insert(), _GLIBCXX_STD::vector< _Tp, _Alloc >::operator=(), _GLIBCXX_STD::vector< bool, _Alloc >::operator=(), _GLIBCXX_STD::operator==(), _GLIBCXX_STD::vector< _Tp, _Alloc >::reserve(), _GLIBCXX_STD::vector< _Tp, _Allocator >::resize(), _GLIBCXX_STD::vector< bool, _Alloc >::resize(), and _GLIBCXX_STD::vector< bool, _Alloc >::vector().

template<typename _Tp, typename _Alloc = allocator<_Tp>>
void _GLIBCXX_STD::vector< _Tp, _Alloc >::swap vector< _Tp, _Alloc > &  __x  )  [inline]
 

Swaps data with another vector.

Parameters:
x A vector of the same element and allocator types.
This exchanges the elements between two vectors in constant time. (Three pointers, so it should be quite fast.) Note that the global std::swap() function is specialized such that std::swap(v1,v2) will feed to this function.

Definition at line 687 of file stl_vector.h.

Referenced by _GLIBCXX_STD::swap().


Member Data Documentation

template<typename _Tp, typename _Alloc = allocator<_Tp>>
_Alloc _GLIBCXX_STD::vector< _Tp, _Alloc >::_Base [private]
 

Reimplemented in __gnu_debug_def::vector< _Tp, _Allocator >.

Definition at line 146 of file stl_vector.h.


The documentation for this class was generated from the following files:
Generated on Tue Jan 30 17:32:09 2007 for GNU C++ STL by doxygen 1.3.6