30 #ifndef _FORWARD_LIST_TCC 
   31 #define _FORWARD_LIST_TCC 1 
   33 namespace std _GLIBCXX_VISIBILITY(default)
 
   35 _GLIBCXX_BEGIN_NAMESPACE_VERSION
 
   36 _GLIBCXX_BEGIN_NAMESPACE_CONTAINER
 
   38   template<
typename _Tp, 
typename _Alloc>
 
   39     _Fwd_list_base<_Tp, _Alloc>::
 
   40     _Fwd_list_base(_Fwd_list_base&& __lst, _Node_alloc_type&& __a)
 
   43       if (__lst._M_get_Node_allocator() == _M_get_Node_allocator())
 
   44         this->_M_impl._M_head = 
std::move(__lst._M_impl._M_head);
 
   47   template<
typename _Tp, 
typename _Alloc>
 
   48     template<
typename... _Args>
 
   50       _Fwd_list_base<_Tp, _Alloc>::
 
   51       _M_insert_after(const_iterator __pos, _Args&&... __args)
 
   53         _Fwd_list_node_base* __to
 
   54           = 
const_cast<_Fwd_list_node_base*
>(__pos._M_node);
 
   55         _Node* __thing = _M_create_node(std::forward<_Args>(__args)...);
 
   56         __thing->_M_next = __to->_M_next;
 
   57         __to->_M_next = __thing;
 
   61   template<
typename _Tp, 
typename _Alloc>
 
   63     _Fwd_list_base<_Tp, _Alloc>::
 
   64     _M_erase_after(_Fwd_list_node_base* __pos)
 
   66       _Node* __curr = 
static_cast<_Node*
>(__pos->_M_next);
 
   67       __pos->_M_next = __curr->_M_next;
 
   68       _Node_alloc_traits::destroy(_M_get_Node_allocator(),
 
   72       return __pos->_M_next;
 
   75   template<
typename _Tp, 
typename _Alloc>
 
   77     _Fwd_list_base<_Tp, _Alloc>::
 
   78     _M_erase_after(_Fwd_list_node_base* __pos,
 
   79                    _Fwd_list_node_base* __last)
 
   81       _Node* __curr = 
static_cast<_Node*
>(__pos->_M_next);
 
   82       while (__curr != __last)
 
   84           _Node* __temp = __curr;
 
   85           __curr = 
static_cast<_Node*
>(__curr->_M_next);
 
   86           _Node_alloc_traits::destroy(_M_get_Node_allocator(),
 
   91       __pos->_M_next = __last;
 
   96   template<
typename _Tp, 
typename _Alloc>
 
   97     template<
typename _InputIterator>
 
   99       forward_list<_Tp, _Alloc>::
 
  100       _M_range_initialize(_InputIterator __first, _InputIterator __last)
 
  102         _Node_base* __to = &this->_M_impl._M_head;
 
  103         for (; __first != __last; ++__first)
 
  105             __to->_M_next = this->_M_create_node(*__first);
 
  106             __to = __to->_M_next;
 
  111   template<
typename _Tp, 
typename _Alloc>
 
  113     forward_list<_Tp, _Alloc>::
 
  114     _M_fill_initialize(size_type __n, 
const value_type& __value)
 
  116       _Node_base* __to = &this->_M_impl._M_head;
 
  119           __to->_M_next = this->_M_create_node(__value);
 
  120           __to = __to->_M_next;
 
  124   template<
typename _Tp, 
typename _Alloc>
 
  126     forward_list<_Tp, _Alloc>::
 
  127     _M_default_initialize(size_type __n)
 
  129       _Node_base* __to = &this->_M_impl._M_head;
 
  132           __to->_M_next = this->_M_create_node();
 
  133           __to = __to->_M_next;
 
  137   template<
typename _Tp, 
typename _Alloc>
 
  138     forward_list<_Tp, _Alloc>&
 
  144           if (_Node_alloc_traits::_S_propagate_on_copy_assign())
 
  146               auto& __this_alloc = this->_M_get_Node_allocator();
 
  147               auto& __that_alloc = __list._M_get_Node_allocator();
 
  148               if (!_Node_alloc_traits::_S_always_equal()
 
  149                   && __this_alloc != __that_alloc)
 
  154               std::__alloc_on_copy(__this_alloc, __that_alloc);
 
  161   template<
typename _Tp, 
typename _Alloc>
 
  166       const_iterator __saved_pos = __pos;
 
  170             __pos = emplace_after(__pos);
 
  174           erase_after(__saved_pos, ++__pos);
 
  175           __throw_exception_again;
 
  179   template<
typename _Tp, 
typename _Alloc>
 
  187       while (__k._M_next() != 
end() && __len < __sz)
 
  193         erase_after(__k, 
end());
 
  195         _M_default_insert_after(__k, __sz - __len);
 
  198   template<
typename _Tp, 
typename _Alloc>
 
  201     resize(size_type __sz, 
const value_type& __val)
 
  206       while (__k._M_next() != 
end() && __len < __sz)
 
  212         erase_after(__k, 
end());
 
  214         insert_after(__k, __sz - __len, __val);
 
  217   template<
typename _Tp, 
typename _Alloc>
 
  221                     const_iterator __before, const_iterator __last)
 
  223       _Node_base* __tmp = 
const_cast<_Node_base*
>(__pos._M_node);
 
  224       _Node_base* __b = 
const_cast<_Node_base*
>(__before._M_node);
 
  225       _Node_base* __end = __b;
 
  227       while (__end && __end->_M_next != __last._M_node)
 
  228         __end = __end->_M_next;
 
  231         return iterator(__tmp->_M_transfer_after(__b, __end));
 
  236   template<
typename _Tp, 
typename _Alloc>
 
  245       if (__pos == __i || __pos == __j)
 
  249       __tmp->_M_transfer_after(
const_cast<_Node_base*
>(__i._M_node),
 
  253   template<
typename _Tp, 
typename _Alloc>
 
  267   template<
typename _Tp, 
typename _Alloc>
 
  268     template<
typename _InputIterator, 
typename>
 
  272                    _InputIterator __first, _InputIterator __last)
 
  281 #if __cplusplus > 201703L 
  282 # define _GLIBCXX20_ONLY(__expr) __expr 
  284 # define _GLIBCXX20_ONLY(__expr) 
  287   template<
typename _Tp, 
typename _Alloc>
 
  290     remove(
const _Tp& __val) -> __remove_return_type
 
  292       size_type __removed __attribute__((__unused__)) = 0;
 
  296       while (
_Node* __tmp = 
static_cast<_Node*
>(__curr->_M_next))
 
  298           if (*__tmp->_M_valptr() == __val)
 
  302                   this->_M_erase_after(__curr);
 
  303                   _GLIBCXX20_ONLY( __removed++ );
 
  309           __curr = __curr->_M_next;
 
  314           this->_M_erase_after(__extra);
 
  315           _GLIBCXX20_ONLY( __removed++ );
 
  317       return _GLIBCXX20_ONLY( __removed );
 
  320   template<
typename _Tp, 
typename _Alloc>
 
  321     template<
typename _Pred>
 
  324       remove_if(_Pred __pred) -> __remove_return_type
 
  326         size_type __removed __attribute__((__unused__)) = 0;
 
  327         _Node_base* __curr = &this->_M_impl._M_head;
 
  328         while (_Node* __tmp = 
static_cast<_Node*
>(__curr->_M_next))
 
  330             if (__pred(*__tmp->_M_valptr()))
 
  332                 this->_M_erase_after(__curr);
 
  333                 _GLIBCXX20_ONLY( __removed++ );
 
  336               __curr = __curr->_M_next;
 
  338         return _GLIBCXX20_ONLY( __removed );
 
  341   template<
typename _Tp, 
typename _Alloc>
 
  342     template<
typename _BinPred>
 
  344       forward_list<_Tp, _Alloc>::
 
  345       unique(_BinPred __binary_pred) -> __remove_return_type
 
  347         iterator __first = 
begin();
 
  348         iterator __last = 
end();
 
  349         if (__first == __last)
 
  350           return _GLIBCXX20_ONLY(0);
 
  351         size_type __removed __attribute__((__unused__)) = 0;
 
  352         iterator __next = __first;
 
  353         while (++__next != __last)
 
  355           if (__binary_pred(*__first, *__next))
 
  357               erase_after(__first);
 
  358               _GLIBCXX20_ONLY( __removed++ );
 
  364         return _GLIBCXX20_ONLY( __removed );
 
  367 #undef _GLIBCXX20_ONLY 
  369   template<
typename _Tp, 
typename _Alloc>
 
  370     template<
typename _Comp>
 
  381         while (__node->_M_next && __list._M_impl._M_head._M_next)
 
  383             if (__comp(*
static_cast<_Node*
> 
  384                        (__list._M_impl._M_head._M_next)->_M_valptr(),
 
  386                        (__node->_M_next)->_M_valptr()))
 
  387               __node->_M_transfer_after(&__list._M_impl._M_head,
 
  388                                         __list._M_impl._M_head._M_next);
 
  389             __node = __node->_M_next;
 
  392         if (__list._M_impl._M_head._M_next)
 
  393           *__node = 
std::move(__list._M_impl._M_head);
 
  396   template<
typename _Tp, 
typename _Alloc>
 
  403       auto __ix = __lx.
cbegin();
 
  404       auto __iy = __ly.
cbegin();
 
  405       while (__ix != __lx.
cend() && __iy != __ly.
cend())
 
  407           if (!(*__ix == *__iy))
 
  412       if (__ix == __lx.
cend() && __iy == __ly.
cend())
 
  418   template<
typename _Tp, 
class _Alloc>
 
  419     template<
typename _Comp>
 
  425         _Node* __list = 
static_cast<_Node*
>(this->_M_impl._M_head._M_next);
 
  429         unsigned long __insize = 1;
 
  435             _Node* __tail = 
nullptr;
 
  438             unsigned long __nmerges = 0;
 
  446                 unsigned long __psize = 0;
 
  447                 for (
unsigned long __i = 0; __i < __insize; ++__i)
 
  450                     __q = 
static_cast<_Node*
>(__q->_M_next);
 
  456                 unsigned long __qsize = __insize;
 
  459                 while (__psize > 0 || (__qsize > 0 && __q))
 
  467                         __q = 
static_cast<_Node*
>(__q->_M_next);
 
  470                     else if (__qsize == 0 || !__q)
 
  474                         __p = 
static_cast<_Node*
>(__p->_M_next);
 
  477                     else if (!__comp(*__q->_M_valptr(), *__p->_M_valptr()))
 
  481                         __p = 
static_cast<_Node*
>(__p->_M_next);
 
  488                         __q = 
static_cast<_Node*
>(__q->_M_next);
 
  494                       __tail->_M_next = __e;
 
  503             __tail->_M_next = 
nullptr;
 
  509                 this->_M_impl._M_head._M_next = __list;
 
  518 _GLIBCXX_END_NAMESPACE_CONTAINER
 
  519 _GLIBCXX_END_NAMESPACE_VERSION
 
constexpr _Tp * __addressof(_Tp &__r) noexcept
Same as C++11 std::addressof.
 
constexpr std::remove_reference< _Tp >::type && move(_Tp &&__t) noexcept
Convert a value to an rvalue.
 
bool operator==(const sub_match< _BiIter > &__lhs, const sub_match< _BiIter > &__rhs)
Tests the equivalence of two regular expression submatches.
 
ISO C++ entities toplevel namespace is std.
 
constexpr const _Tp * begin(initializer_list< _Tp > __ils) noexcept
Return an iterator pointing to the first element of the initializer_list.
 
constexpr const _Tp * end(initializer_list< _Tp > __ils) noexcept
Return an iterator pointing to one past the last element of the initializer_list.
 
A helper basic node class for forward_list. This is just a linked list with nothing inside it....
 
A helper node class for forward_list. This is just a linked list with uninitialized storage for a dat...
 
A forward_list::iterator.
 
A forward_list::const_iterator.
 
A standard container with linear time access to elements, and fixed time insertion/deletion at any po...
 
iterator before_begin() noexcept
 
const_iterator cend() const noexcept
 
bool empty() const noexcept
 
const_iterator cbegin() const noexcept