List of all members.
Public Types
Public Member Functions
-
vector (const _Allocator &__a=_Allocator())
-
vector (size_type __n)
-
vector (size_type __n, const _Tp &__value, const _Allocator &__a=_Allocator())
-
template<class _InputIterator > vector (_InputIterator __first, _InputIterator __last, const _Allocator &__a=_Allocator())
-
vector (const vector &__x)
- vector (const _Base &__x)
-
vector (vector &&__x)
-
vector (initializer_list< value_type > __l, const allocator_type &__a=allocator_type())
-
_Base & _M_base ()
-
const _Base & _M_base () const
- void _M_invalidate_if (_Predicate __pred)
- void _M_transfer_from_if (_Safe_sequence &__from, _Predicate __pred)
-
template<typename _InputIterator > void assign (_InputIterator __first, _InputIterator __last)
-
void assign (size_type __n, const _Tp &__u)
-
void assign (initializer_list< value_type > __l)
-
reference back ()
-
const_reference back () const
-
iterator begin ()
-
const_iterator begin () const
-
size_type capacity () const
-
const_iterator cbegin () const
-
const_iterator cend () const
-
void clear ()
-
const_reverse_iterator crbegin () const
-
const_reverse_iterator crend () const
-
template<typename... _Args> iterator emplace (iterator __position, _Args &&...__args)
-
template<typename... _Args> void emplace_back (_Args &&...__args)
-
iterator end ()
-
const_iterator end () const
-
iterator erase (iterator __position)
-
iterator erase (iterator __first, iterator __last)
-
reference front ()
-
const_reference front () const
-
iterator insert (iterator __position, const _Tp &__x)
-
template<typename _Up = _Tp> __gnu_cxx::__enable_if
<!std::__are_same< _Up, bool >
::__value, iterator >::__type insert (iterator __position, _Tp &&__x)
-
void insert (iterator __position, initializer_list< value_type > __l)
-
void insert (iterator __position, size_type __n, const _Tp &__x)
-
template<class _InputIterator > void insert (iterator __position, _InputIterator __first, _InputIterator __last)
-
vector & operator= (const vector &__x)
-
vector & operator= (vector &&__x)
-
vector & operator= (initializer_list< value_type > __l)
-
reference operator[] (size_type __n)
-
const_reference operator[] (size_type __n) const
-
void pop_back ()
-
void push_back (const _Tp &__x)
-
template<typename _Up = _Tp> __gnu_cxx::__enable_if
<!std::__are_same< _Up, bool >
::__value, void >::__type push_back (_Tp &&__x)
-
reverse_iterator rbegin ()
-
const_reverse_iterator rbegin () const
-
reverse_iterator rend ()
-
const_reverse_iterator rend () const
-
void reserve (size_type __n)
-
void resize (size_type __sz)
-
void resize (size_type __sz, const _Tp &__c)
-
void swap (vector &__x)
Detailed Description
Class std::vector with safety/checking/debug instrumentation.
Constructor & Destructor Documentation
| std::__debug::vector::vector |
( |
const _Base & |
__x | ) |
[inline] |
Construction from a release-mode vector.
Definition at line 108 of file debug/vector.
Member Function Documentation
| void __gnu_debug::_Safe_sequence::_M_invalidate_if |
( |
_Predicate |
__pred | ) |
[inherited] |
Invalidates all iterators x that reference this sequence, are not singular, and for which pred(x) returns true. pred will be invoked with the normal iterators nested in the safe ones.
| void __gnu_debug::_Safe_sequence::_M_transfer_from_if |
( |
_Safe_sequence< vector< _Tp, _Allocator > > & |
__from, |
|
|
_Predicate |
__pred |
|
) |
| [inherited] |
Transfers all iterators x that reference from sequence, are not singular, and for which pred(x) returns true. pred will be invoked with the normal iterators nested in the safe ones.
The documentation for this class was generated from the following file: