logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

std::__debug::list< _Tp, _Allocator > - Class std::list with safety/checking/debug instrumentation.

Author

       Generated automatically by Doxygen for libstdc++ from the source code.

                                                    libstdc++        std::__debug::list<_Tp,_Allocator>(3cxx)

Detailed Description

template<typename_Tp,typename_Allocator=std::allocator<_Tp>>
       class std::__debug::list< _Tp, _Allocator >"Class std::list with safety/checking/debug instrumentation.

Name

       std::__debug::list< _Tp, _Allocator > - Class std::list with safety/checking/debug instrumentation.

Synopsis

       #include <list>

       Inherits __gnu_debug::_Safe_container<_SafeContainer,_Alloc,_SafeBase,_IsCxx11AllocatorAware>, and
       list< _Tp, std::allocator< _Tp > >.

   PublicTypestypedef_Allocatorallocator_typetypedef__gnu_debug::_Safe_iterator< _Base_const_iterator, list > const_iteratortypedef _Base::const_pointer const_pointertypedef _Base::const_reference const_referencetypedefstd::reverse_iterator< const_iterator > const_reverse_iteratortypedef _Base::difference_type difference_typetypedef__gnu_debug::_Safe_iterator< _Base_iterator, list > iteratortypedef _Base::pointer pointertypedef _Base::reference referencetypedefstd::reverse_iterator< iterator > reverse_iteratortypedef _Base::size_type size_typetypedef _Tp value_typePublicMemberFunctionslist (_Base_ref __x)
       template<class_InputIterator , typename  = std::_RequireInputIter<_InputIterator>> list (_InputIterator
           __first, _InputIterator __last, const _Allocator &__a=_Allocator())
       list (const _Allocator &__a) noexcept
       list (const list &)=defaultlist (const list &__x, const __type_identity_t< allocator_type > &__a)
       list (initializer_list< value_type > __l, const allocator_type &__a=allocator_type())
       list (list &&)=defaultlist (list &&__x, const __type_identity_t< allocator_type > &__a) noexcept(std::is_nothrow_constructible<
           _Base, _Base, const allocator_type & >::value)
       list (size_type __n, const __type_identity_t< _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
       template<class_InputIterator , typename  = std::_RequireInputIter<_InputIterator>> voidassign
           (_InputIterator __first, _InputIterator __last)
       voidassign (initializer_list< value_type > __l)
       voidassign (size_type __n, const _Tp &__t)
       const_reference back () const noexcept
       reference back () noexcept
       const_iteratorbegin () const noexcept
       iteratorbegin () noexcept
       const_iteratorcbegin () const noexcept
       const_iteratorcend () const noexcept
       voidclear () noexcept
       const_reverse_iteratorcrbegin () const noexcept
       const_reverse_iteratorcrend () const noexcept
       template<typename... _Args> iteratoremplace (const_iterator__position, _Args &&... __args)
       const_iteratorend () const noexcept
       iteratorend () noexcept
       iteratorerase (const_iterator __first, const_iterator __last) noexcept
       iteratorerase (const_iterator__position) noexcept
       const_reference front () const noexcept
       reference front () noexcept
       iteratorinsert (const_iterator __p, initializer_list< value_type > __l)
       template<class_InputIterator , typename  = std::_RequireInputIter<_InputIterator>> iteratorinsert
           (const_iterator__position, _InputIterator __first, _InputIterator __last)
       iteratorinsert (const_iterator__position, _Tp &&__x)
       iteratorinsert (const_iterator__position, const _Tp &__x)
       iteratorinsert (const_iterator__position, size_type __n, const _Tp &__x)
       voidmerge (list &&__x)
       template<class _Compare > voidmerge (list &&__x, _Compare __comp)
       voidmerge (list &__x)
       template<typename _Compare > voidmerge (list &__x, _Compare __comp)
       list & operator= (const list &)=defaultlist & operator= (initializer_list< value_type > __l)
       list & operator= (list &&)=defaultvoidpop_back () noexcept
       voidpop_front () noexcept
       const_reverse_iteratorrbegin () const noexcept
       reverse_iteratorrbegin () noexcept
       __remove_return_type remove (const _Tp &__value)
       template<class _Predicate > __remove_return_type remove_if (_Predicate __pred)
       const_reverse_iteratorrend () const noexcept
       reverse_iteratorrend () noexcept
       voidresize (size_type __sz)
       voidresize (size_type __sz, const _Tp &__c)
       voidsort ()
       template<typename_StrictWeakOrdering > voidsort (_StrictWeakOrdering__pred)
       voidsplice (const_iterator__position, list &&__x) noexcept
       voidsplice (const_iterator__position, list &&__x, const_iterator __first, const_iterator __last)
           noexcept
       voidsplice (const_iterator__position, list &&__x, const_iterator __i) noexcept
       voidsplice (const_iterator__position, list &__x) noexcept
       voidsplice (const_iterator__position, list &__x, const_iterator __first, const_iterator __last)
           noexcept
       voidsplice (const_iterator__position, list &__x, const_iterator __i) noexcept
       voidswap (list &__x) noexcept(/*conditional */)
       __remove_return_type unique ()
       template<class_BinaryPredicate > __remove_return_type unique (_BinaryPredicate__binary_pred)

   ProtectedMemberFunctionsvoid_M_swap (_Safe_container &__x) noexcept

   Friends
       template<typename_ItT , typename_SeqT , typename_CatT > class::__gnu_debug::_Safe_iterator

See Also