30 #ifndef _FORWARD_LIST_TCC
31 #define _FORWARD_LIST_TCC 1
33 namespace std _GLIBCXX_VISIBILITY(default)
35 _GLIBCXX_BEGIN_NAMESPACE_CONTAINER
37 template<
typename _Tp,
typename _Alloc>
38 _Fwd_list_base<_Tp, _Alloc>::
39 _Fwd_list_base(
const _Fwd_list_base& __lst,
const _Node_alloc_type& __a)
42 this->_M_impl._M_head._M_next = 0;
43 _Fwd_list_node_base* __to = &this->_M_impl._M_head;
44 _Node* __curr =
static_cast<_Node*
>(__lst._M_impl._M_head._M_next);
48 __to->_M_next = _M_create_node(__curr->_M_value);
50 __curr =
static_cast<_Node*
>(__curr->_M_next);
54 template<
typename _Tp,
typename _Alloc>
55 template<
typename... _Args>
57 _Fwd_list_base<_Tp, _Alloc>::
58 _M_insert_after(const_iterator __pos, _Args&&... __args)
60 _Fwd_list_node_base* __to
61 =
const_cast<_Fwd_list_node_base*
>(__pos._M_node);
62 _Node* __thing = _M_create_node(std::forward<_Args>(__args)...);
63 __thing->_M_next = __to->_M_next;
64 __to->_M_next = __thing;
68 template<
typename _Tp,
typename _Alloc>
70 _Fwd_list_base<_Tp, _Alloc>::
71 _M_erase_after(_Fwd_list_node_base* __pos)
73 _Node* __curr =
static_cast<_Node*
>(__pos->_M_next);
74 __pos->_M_next = __curr->_M_next;
75 _M_get_Node_allocator().destroy(__curr);
77 return __pos->_M_next;
80 template<
typename _Tp,
typename _Alloc>
82 _Fwd_list_base<_Tp, _Alloc>::
83 _M_erase_after(_Fwd_list_node_base* __pos,
84 _Fwd_list_node_base* __last)
86 _Node* __curr =
static_cast<_Node*
>(__pos->_M_next);
87 while (__curr != __last)
89 _Node* __temp = __curr;
90 __curr =
static_cast<_Node*
>(__curr->_M_next);
91 _M_get_Node_allocator().destroy(__temp);
94 __pos->_M_next = __last;
99 template<
typename _Tp,
typename _Alloc>
100 template<
typename _InputIterator>
102 forward_list<_Tp, _Alloc>::
103 _M_initialize_dispatch(_InputIterator __first, _InputIterator __last,
106 _Node_base* __to = &this->_M_impl._M_head;
107 for (; __first != __last; ++__first)
109 __to->_M_next = this->_M_create_node(*__first);
110 __to = __to->_M_next;
116 template<
typename _Tp,
typename _Alloc>
118 forward_list<_Tp, _Alloc>::
119 _M_fill_initialize(size_type __n,
const value_type& __value)
121 _Node_base* __to = &this->_M_impl._M_head;
124 __to->_M_next = this->_M_create_node(__value);
125 __to = __to->_M_next;
129 template<
typename _Tp,
typename _Alloc>
131 forward_list<_Tp, _Alloc>::
132 _M_default_initialize(size_type __n)
134 _Node_base* __to = &this->_M_impl._M_head;
137 __to->_M_next = this->_M_create_node();
138 __to = __to->_M_next;
142 template<
typename _Tp,
typename _Alloc>
143 forward_list<_Tp, _Alloc>&
144 forward_list<_Tp, _Alloc>::
154 while (__curr1 != __last1 && __first2 != __last2)
156 *__curr1 = *__first2;
161 if (__first2 == __last2)
162 erase_after(__prev1, __last1);
164 insert_after(__prev1, __first2, __last2);
169 template<
typename _Tp,
typename _Alloc>
174 const_iterator __saved_pos = __pos;
178 __pos = emplace_after(__pos);
182 erase_after(__saved_pos, ++__pos);
183 __throw_exception_again;
187 template<
typename _Tp,
typename _Alloc>
189 forward_list<_Tp, _Alloc>::
190 resize(size_type __sz)
195 while (__k._M_next() !=
end() && __len < __sz)
201 erase_after(__k,
end());
203 _M_default_insert_after(__k, __sz - __len);
206 template<
typename _Tp,
typename _Alloc>
209 resize(size_type __sz,
const value_type& __val)
214 while (__k._M_next() !=
end() && __len < __sz)
220 erase_after(__k,
end());
222 insert_after(__k, __sz - __len, __val);
225 template<
typename _Tp,
typename _Alloc>
229 const_iterator __before, const_iterator __last)
231 _Node_base* __tmp =
const_cast<_Node_base*
>(__pos._M_node);
232 _Node_base* __b =
const_cast<_Node_base*
>(__before._M_node);
233 _Node_base* __end = __b;
235 while (__end && __end->_M_next != __last._M_node)
236 __end = __end->_M_next;
239 return iterator(__tmp->_M_transfer_after(__b, __end));
244 template<
typename _Tp,
typename _Alloc>
246 forward_list<_Tp, _Alloc>::
253 if (__pos == __i || __pos == __j)
257 __tmp->_M_transfer_after(const_cast<_Node_base*>(__i._M_node),
258 const_cast<_Node_base*>(__j._M_node));
261 template<
typename _Tp,
typename _Alloc>
272 return iterator(const_cast<_Node_base*>(__pos._M_node));
275 template<
typename _Tp,
typename _Alloc>
276 template<
typename _InputIterator>
280 _InputIterator __first, _InputIterator __last)
284 return _M_splice_after(__pos, __tmp.before_begin(), __tmp.end());
286 return iterator(const_cast<_Node_base*>(__pos._M_node));
289 template<
typename _Tp,
typename _Alloc>
291 forward_list<_Tp, _Alloc>::
292 remove(
const _Tp& __val)
294 _Node* __curr =
static_cast<_Node*
>(&this->_M_impl._M_head);
297 while (
_Node* __tmp = static_cast<_Node*>(__curr->_M_next))
299 if (__tmp->_M_value == __val)
304 this->_M_erase_after(__curr);
310 __curr =
static_cast<_Node*
>(__curr->_M_next);
314 this->_M_erase_after(__extra);
317 template<
typename _Tp,
typename _Alloc>
318 template<
typename _Pred>
323 _Node* __curr =
static_cast<_Node*
>(&this->_M_impl._M_head);
324 while (
_Node* __tmp = static_cast<_Node*>(__curr->_M_next))
326 if (__pred(__tmp->_M_value))
327 this->_M_erase_after(__curr);
329 __curr =
static_cast<_Node*
>(__curr->_M_next);
333 template<
typename _Tp,
typename _Alloc>
334 template<
typename _BinPred>
341 if (__first == __last)
344 while (++__next != __last)
346 if (__binary_pred(*__first, *__next))
347 erase_after(__first);
354 template<
typename _Tp,
typename _Alloc>
355 template<
typename _Comp>
361 while (__node->_M_next && __list._M_impl._M_head._M_next)
363 if (__comp(static_cast<_Node*>
364 (__list._M_impl._M_head._M_next)->_M_value,
366 (__node->_M_next)->_M_value))
367 __node->_M_transfer_after(&__list._M_impl._M_head,
368 __list._M_impl._M_head._M_next);
369 __node = __node->_M_next;
371 if (__list._M_impl._M_head._M_next)
373 __node->_M_next = __list._M_impl._M_head._M_next;
374 __list._M_impl._M_head._M_next = 0;
378 template<
typename _Tp,
typename _Alloc>
385 auto __ix = __lx.
cbegin();
386 auto __iy = __ly.
cbegin();
387 while (__ix != __lx.
cend() && __iy != __ly.
cend())
394 if (__ix == __lx.
cend() && __iy == __ly.
cend())
400 template<
typename _Tp,
class _Alloc>
401 template<
typename _Comp>
403 forward_list<_Tp, _Alloc>::
407 _Node* __list =
static_cast<_Node*
>(this->_M_impl._M_head._M_next);
411 unsigned long __insize = 1;
420 unsigned long __nmerges = 0;
428 unsigned long __psize = 0;
429 for (
unsigned long __i = 0; __i < __insize; ++__i)
432 __q =
static_cast<_Node*
>(__q->_M_next);
438 unsigned long __qsize = __insize;
441 while (__psize > 0 || (__qsize > 0 && __q))
449 __q =
static_cast<_Node*
>(__q->_M_next);
452 else if (__qsize == 0 || !__q)
456 __p =
static_cast<_Node*
>(__p->_M_next);
459 else if (__comp(__p->_M_value, __q->_M_value))
463 __p =
static_cast<_Node*
>(__p->_M_next);
470 __q =
static_cast<_Node*
>(__q->_M_next);
476 __tail->_M_next = __e;
491 this->_M_impl._M_head._M_next = __list;
500 _GLIBCXX_END_NAMESPACE_CONTAINER
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 a data value in each node...
iterator before_begin() noexcept
A standard container with linear time access to elements, and fixed time insertion/deletion at any po...
A forward_list::iterator.
constexpr const _Tp * end(initializer_list< _Tp > __ils) noexcept
Return an iterator pointing to one past the last element of the initilizer_list.
const_iterator cbegin() const noexcept
const_iterator cend() const noexcept
_Tp * __addressof(_Tp &__r) _GLIBCXX_NOEXCEPT
Same as C++11 std::addressof.
constexpr const _Tp * begin(initializer_list< _Tp > __ils) noexcept
Return an iterator pointing to the first element of the initilizer_list.
A forward_list::const_iterator.