Inherits list< _Tp, std::allocator< _Tp > >, and std::__profile::_List_profile< _List >.
|
| template<typename _InputIterator , typename = std::_RequireInputIter<_InputIterator>> |
| | list (_InputIterator __first, _InputIterator __last, const _Allocator &__a=_Allocator()) |
| |
| | list (const _Allocator &__a) noexcept |
| |
| | list (const _Base &__x) |
| |
|
| list (const list &)=default |
| |
| | list (const list &__x, const allocator_type &__a) |
| |
| | list (initializer_list< value_type > __l, const allocator_type &__a=allocator_type()) |
| |
|
| list (list &&)=default |
| |
| | list (list &&__x, const allocator_type &__a) |
| |
| | list (size_type __n, const _Tp &__value, const _Allocator &__a=_Allocator()) |
| |
| | list (size_type __n, const allocator_type &__a=allocator_type()) |
| |
| const _Base & | _M_base () const noexcept |
| |
| _Base & | _M_base () noexcept |
| |
| void | _M_profile_construct () noexcept |
| |
| void | _M_profile_destruct () noexcept |
| |
| void | _M_profile_iterate (int __rewind=0) const |
| |
| void | _M_swap (_List_profile &__other) |
| |
| const_reference | back () const noexcept |
| |
| reference | back () noexcept |
| |
| const_iterator | begin () const noexcept |
| |
| iterator | begin () noexcept |
| |
| const_iterator | cbegin () const noexcept |
| |
| const_iterator | cend () const noexcept |
| |
| void | clear () noexcept |
| |
| const_reverse_iterator | crbegin () const noexcept |
| |
| const_reverse_iterator | crend () const noexcept |
| |
| template<typename... _Args> |
| iterator | emplace (const_iterator __position, _Args &&... __args) |
| |
| const_iterator | end () const noexcept |
| |
| iterator | end () noexcept |
| |
| iterator | erase (const_iterator __pos) noexcept |
| |
| iterator | erase (const_iterator __pos, const_iterator __last) noexcept |
| |
| template<typename _InputIterator , typename = std::_RequireInputIter<_InputIterator>> |
| iterator | insert (const_iterator __pos, _InputIterator __first, _InputIterator __last) |
| |
| iterator | insert (const_iterator __pos, _Tp &&__x) |
| |
| iterator | insert (const_iterator __pos, const _Tp &__x) |
| |
| iterator | insert (const_iterator __pos, initializer_list< value_type > __l) |
| |
| iterator | insert (const_iterator __pos, size_type __n, const _Tp &__x) |
| |
| void | merge (list &&__x) |
| |
| template<class _Compare > |
| void | merge (list &&__x, _Compare __comp) |
| |
| void | merge (list &__x) |
| |
| template<typename _Compare > |
| void | merge (list &__x, _Compare __comp) |
| |
|
list & | operator= (const list &)=default |
| |
| list & | operator= (initializer_list< value_type > __l) |
| |
|
list & | operator= (list &&)=default |
| |
| void | pop_back () noexcept |
| |
| void | pop_front () noexcept |
| |
| void | push_front (const value_type &__x) |
| |
| const_reverse_iterator | rbegin () const noexcept |
| |
| reverse_iterator | rbegin () noexcept |
| |
| void | remove (const _Tp &__value) |
| |
| template<class _Predicate > |
| void | remove_if (_Predicate __pred) |
| |
| const_reverse_iterator | rend () const noexcept |
| |
| reverse_iterator | rend () noexcept |
| |
| void | splice (const_iterator __pos, list &&__x) noexcept |
| |
| void | splice (const_iterator __pos, list &&__x, const_iterator __first, const_iterator __last) noexcept |
| |
| void | splice (const_iterator __pos, list &&__x, const_iterator __i) noexcept |
| |
| void | splice (const_iterator __pos, list &__x) noexcept |
| |
| void | splice (const_iterator __pos, list &__x, const_iterator __first, const_iterator __last) noexcept |
| |
| void | splice (const_iterator __pos, list &__x, const_iterator __i) |
| |
| void | swap (list &__x) noexcept(/*conditional */) |
| |
| void | unique () |
| |
| template<class _BinaryPredicate > |
| void | unique (_BinaryPredicate __binary_pred) |
| |
List wrapper with performance instrumentation.
Definition at line 106 of file profile/list.