30#ifndef _FORWARD_LIST_H
31#define _FORWARD_LIST_H 1
33#pragma GCC system_header
44namespace std _GLIBCXX_VISIBILITY(default)
46_GLIBCXX_BEGIN_NAMESPACE_VERSION
47_GLIBCXX_BEGIN_NAMESPACE_CONTAINER
58 : _M_next(__x._M_next)
59 { __x._M_next =
nullptr; }
67 _M_next = __x._M_next;
68 __x._M_next =
nullptr;
81 __begin->_M_next = __end->_M_next;
82 __end->_M_next = _M_next;
85 __begin->_M_next =
nullptr;
91 _M_reverse_after()
noexcept
100 __tail->_M_next = __temp->_M_next;
101 _M_next->_M_next = __keep;
112 template<
typename _Tp>
118 __gnu_cxx::__aligned_buffer<_Tp> _M_storage;
122 {
return _M_storage._M_ptr(); }
125 _M_valptr()
const noexcept
126 {
return _M_storage._M_ptr(); }
134 template<
typename _Tp>
140 typedef _Tp value_type;
141 typedef _Tp* pointer;
142 typedef _Tp& reference;
143 typedef ptrdiff_t difference_type;
154 operator*()
const noexcept
155 {
return *
static_cast<_Node*
>(this->_M_node)->_M_valptr(); }
158 operator->()
const noexcept
159 {
return static_cast<_Node*
>(this->_M_node)->_M_valptr(); }
162 operator++()
noexcept
164 _M_node = _M_node->_M_next;
169 operator++(
int)
noexcept
172 _M_node = _M_node->_M_next;
181 {
return __x._M_node == __y._M_node; }
183#if __cpp_impl_three_way_comparison < 201907L
189 {
return __x._M_node != __y._M_node; }
193 _M_next() const noexcept
201 _Fwd_list_node_base* _M_node;
209 template<
typename _Tp>
216 typedef _Tp value_type;
217 typedef const _Tp* pointer;
218 typedef const _Tp& reference;
219 typedef ptrdiff_t difference_type;
230 : _M_node(__iter._M_node) { }
233 operator*()
const noexcept
234 {
return *
static_cast<_Node*
>(this->_M_node)->_M_valptr(); }
237 operator->()
const noexcept
238 {
return static_cast<_Node*
>(this->_M_node)->_M_valptr(); }
241 operator++()
noexcept
243 _M_node = _M_node->_M_next;
248 operator++(
int)
noexcept
251 _M_node = _M_node->_M_next;
260 {
return __x._M_node == __y._M_node; }
262#if __cpp_impl_three_way_comparison < 201907L
268 {
return __x._M_node != __y._M_node; }
272 _M_next() const noexcept
280 const _Fwd_list_node_base* _M_node;
286 template<
typename _Tp,
typename _Alloc>
290 typedef __alloc_rebind<_Alloc, _Fwd_list_node<_Tp>> _Node_alloc_type;
293 struct _Fwd_list_impl
294 :
public _Node_alloc_type
300 : _Node_alloc_type(), _M_head()
303 _Fwd_list_impl(_Fwd_list_impl&&) =
default;
305 _Fwd_list_impl(_Fwd_list_impl&& __fl, _Node_alloc_type&& __a)
309 _Fwd_list_impl(_Node_alloc_type&& __a)
310 : _Node_alloc_type(
std::move(__a)), _M_head()
314 _Fwd_list_impl _M_impl;
322 _M_get_Node_allocator()
noexcept
323 {
return this->_M_impl; }
325 const _Node_alloc_type&
326 _M_get_Node_allocator()
const noexcept
327 {
return this->_M_impl; }
346 { _M_erase_after(&_M_impl._M_head,
nullptr); }
353 return std::__to_address(__ptr);
356 template<
typename... _Args>
358 _M_create_node(_Args&&... __args)
360 _Node* __node = this->_M_get_node();
363 ::new ((
void*)__node)
_Node;
364 _Node_alloc_traits::construct(_M_get_Node_allocator(),
366 std::forward<_Args>(__args)...);
370 this->_M_put_node(__node);
371 __throw_exception_again;
376 template<
typename... _Args>
381 _M_put_node(
_Node* __p)
383 typedef typename _Node_alloc_traits::pointer _Ptr;
422 template<
typename _Tp,
typename _Alloc = allocator<_Tp>>
426 "std::forward_list must have a non-const, non-volatile value_type");
427#if __cplusplus > 201703L || defined __STRICT_ANSI__
429 "std::forward_list must have the same value_type as its allocator");
436 typedef typename _Base::_Node_alloc_type _Node_alloc_type;
442 typedef _Tp value_type;
445 typedef value_type& reference;
446 typedef const value_type& const_reference;
450 typedef std::size_t size_type;
451 typedef std::ptrdiff_t difference_type;
452 typedef _Alloc allocator_type;
467 :
_Base(_Node_alloc_type(__al))
476 :
_Base(_Node_alloc_type(__al))
477 { _M_range_initialize(__list.
begin(), __list.
end()); }
487 std::__make_move_if_noexcept_iterator(__list.begin()),
488 std::__make_move_if_noexcept_iterator(__list.end()));
504 noexcept(_Node_alloc_traits::_S_always_equal())
519 :
_Base(_Node_alloc_type(__al))
520 { _M_default_initialize(__n); }
532 const _Alloc& __al = _Alloc())
533 :
_Base(_Node_alloc_type(__al))
534 { _M_fill_initialize(__n, __value); }
546 template<
typename _InputIterator,
547 typename = std::_RequireInputIter<_InputIterator>>
549 const _Alloc& __al = _Alloc())
550 :
_Base(_Node_alloc_type(__al))
551 { _M_range_initialize(__first, __last); }
560 __list._M_get_Node_allocator()))
561 { _M_range_initialize(__list.
begin(), __list.
end()); }
583 const _Alloc& __al = _Alloc())
584 :
_Base(_Node_alloc_type(__al))
585 { _M_range_initialize(__il.begin(), __il.end()); }
619 noexcept(_Node_alloc_traits::_S_nothrow_move())
621 constexpr bool __move_storage =
622 _Node_alloc_traits::_S_propagate_on_move_assign()
623 || _Node_alloc_traits::_S_always_equal();
624 _M_move_assign(
std::move(__list), __bool_constant<__move_storage>());
655 template<
typename _InputIterator,
656 typename = std::_RequireInputIter<_InputIterator>>
658 assign(_InputIterator __first, _InputIterator __last)
661 _M_assign(__first, __last, __assignable());
688 {
assign(__il.begin(), __il.end()); }
693 {
return allocator_type(this->_M_get_Node_allocator()); }
703 {
return iterator(&this->_M_impl._M_head); }
720 {
return iterator(this->_M_impl._M_head._M_next); }
780 _GLIBCXX_NODISCARD
bool
782 {
return this->_M_impl._M_head._M_next ==
nullptr; }
800 _Node* __front =
static_cast<_Node*
>(this->_M_impl._M_head._M_next);
801 return *__front->_M_valptr();
811 _Node* __front =
static_cast<_Node*
>(this->_M_impl._M_head._M_next);
812 return *__front->_M_valptr();
828 template<
typename... _Args>
829#if __cplusplus > 201402L
837 std::forward<_Args>(__args)...);
838#if __cplusplus > 201402L
878 { this->_M_erase_after(&this->_M_impl._M_head); }
893 template<
typename... _Args>
896 {
return iterator(this->_M_insert_after(__pos,
897 std::forward<_Args>(__args)...)); }
913 {
return iterator(this->_M_insert_after(__pos, __val)); }
938 insert_after(const_iterator __pos, size_type __n,
const _Tp& __val);
955 template<
typename _InputIterator,
956 typename = std::_RequireInputIter<_InputIterator>>
959 _InputIterator __first, _InputIterator __last);
978 {
return insert_after(__pos, __il.begin(), __il.end()); }
1000 (__pos._M_node))); }
1025 (__last._M_node))); }
1042 std::swap(this->_M_impl._M_head._M_next,
1043 __list._M_impl._M_head._M_next);
1044 _Node_alloc_traits::_S_on_swap(this->_M_get_Node_allocator(),
1045 __list._M_get_Node_allocator());
1075 resize(size_type __sz,
const value_type& __val);
1087 { this->_M_erase_after(&this->_M_impl._M_head,
nullptr); }
1105 if (!__list.empty())
1106 _M_splice_after(__pos, __list.before_begin(), __list.end());
1125 const_iterator __i)
noexcept;
1129 const_iterator __i)
noexcept
1149 { _M_splice_after(__pos, __before, __last); }
1154 { _M_splice_after(__pos, __before, __last); }
1158#if __cplusplus > 201703L
1159# define __cpp_lib_list_remove_return_type 201806L
1160 using __remove_return_type = size_type;
1161# define _GLIBCXX_FWDLIST_REMOVE_RETURN_TYPE_TAG \
1162 __attribute__((__abi_tag__("__cxx20")))
1164 using __remove_return_type = void;
1165# define _GLIBCXX_FWDLIST_REMOVE_RETURN_TYPE_TAG
1180 _GLIBCXX_FWDLIST_REMOVE_RETURN_TYPE_TAG
1181 __remove_return_type
1182 remove(
const _Tp& __val);
1195 template<
typename _Pred>
1196 __remove_return_type
1209 _GLIBCXX_FWDLIST_REMOVE_RETURN_TYPE_TAG
1210 __remove_return_type
1214#undef _GLIBCXX_FWDLIST_REMOVE_RETURN_TYPE_TAG
1228 template<
typename _BinPred>
1229 __remove_return_type
1260 template<
typename _Comp>
1264 template<
typename _Comp>
1285 template<
typename _Comp>
1296 { this->_M_impl._M_head._M_reverse_after(); }
1300 template<
typename _InputIterator>
1302 _M_range_initialize(_InputIterator __first, _InputIterator __last);
1307 _M_fill_initialize(size_type __n,
const value_type& __value);
1311 _M_splice_after(const_iterator __pos, const_iterator __before,
1312 const_iterator __last);
1316 _M_default_initialize(size_type __n);
1320 _M_default_insert_after(const_iterator __pos, size_type __n);
1327 this->_M_impl._M_head._M_next = __list._M_impl._M_head._M_next;
1328 __list._M_impl._M_head._M_next =
nullptr;
1329 std::__alloc_on_move(this->_M_get_Node_allocator(),
1330 __list._M_get_Node_allocator());
1337 if (__list._M_get_Node_allocator() == this->_M_get_Node_allocator())
1342 this->
assign(std::make_move_iterator(__list.begin()),
1343 std::make_move_iterator(__list.end()));
1348 template<
typename _InputIterator>
1350 _M_assign(_InputIterator __first, _InputIterator __last,
true_type)
1353 auto __curr =
begin();
1355 while (__curr != __end && __first != __last)
1362 if (__first != __last)
1364 else if (__curr != __end)
1370 template<
typename _InputIterator>
1372 _M_assign(_InputIterator __first, _InputIterator __last,
false_type)
1380 _M_assign_n(size_type __n,
const _Tp& __val,
true_type)
1383 auto __curr =
begin();
1385 while (__curr != __end && __n > 0)
1394 else if (__curr != __end)
1400 _M_assign_n(size_type __n,
const _Tp& __val,
false_type)
1407#if __cpp_deduction_guides >= 201606
1408 template<
typename _InputIterator,
typename _ValT
1409 =
typename iterator_traits<_InputIterator>::value_type,
1410 typename _Allocator = allocator<_ValT>,
1411 typename = _RequireInputIter<_InputIterator>,
1412 typename = _RequireAllocator<_Allocator>>
1413 forward_list(_InputIterator, _InputIterator, _Allocator = _Allocator())
1414 -> forward_list<_ValT, _Allocator>;
1427 template<
typename _Tp,
typename _Alloc>
1429 operator==(
const forward_list<_Tp, _Alloc>& __lx,
1430 const forward_list<_Tp, _Alloc>& __ly);
1432#if __cpp_lib_three_way_comparison
1444 template<
typename _Tp,
typename _Alloc>
1445 inline __detail::__synth3way_t<_Tp>
1446 operator<=>(
const forward_list<_Tp, _Alloc>& __x,
1447 const forward_list<_Tp, _Alloc>& __y)
1449 return std::lexicographical_compare_three_way(__x.begin(), __x.end(),
1450 __y.begin(), __y.end(),
1451 __detail::__synth3way);
1466 template<
typename _Tp,
typename _Alloc>
1470 {
return std::lexicographical_compare(__lx.
cbegin(), __lx.
cend(),
1474 template<
typename _Tp,
typename _Alloc>
1478 {
return !(__lx == __ly); }
1481 template<
typename _Tp,
typename _Alloc>
1485 {
return (__ly < __lx); }
1488 template<
typename _Tp,
typename _Alloc>
1492 {
return !(__lx < __ly); }
1495 template<
typename _Tp,
typename _Alloc>
1499 {
return !(__ly < __lx); }
1503 template<
typename _Tp,
typename _Alloc>
1507 noexcept(
noexcept(__lx.swap(__ly)))
1508 { __lx.swap(__ly); }
1510_GLIBCXX_END_NAMESPACE_CONTAINER
1511_GLIBCXX_END_NAMESPACE_VERSION
integral_constant< bool, true > true_type
The type used as a compile-time boolean with true value.
integral_constant< bool, false > false_type
The type used as a compile-time boolean with false value.
constexpr std::remove_reference< _Tp >::type && move(_Tp &&__t) noexcept
Convert a value to an rvalue.
void swap(any &__x, any &__y) noexcept
Exchange the states of two any objects.
ISO C++ entities toplevel namespace is std.
is_nothrow_default_constructible
Uniform interface to all allocator types.
__detected_or_t< value_type *, __pointer, _Alloc > pointer
The allocator's pointer type.
typename _Ptr< __c_pointer, const value_type >::type const_pointer
The allocator's const pointer type.
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.
friend bool operator!=(const _Self &__x, const _Self &__y) noexcept
Forward list iterator inequality comparison.
friend bool operator==(const _Self &__x, const _Self &__y) noexcept
Forward list iterator equality comparison.
A forward_list::const_iterator.
friend bool operator!=(const _Self &__x, const _Self &__y) noexcept
Forward list const_iterator inequality comparison.
friend bool operator==(const _Self &__x, const _Self &__y) noexcept
Forward list const_iterator equality comparison.
Base class for forward_list.
A standard container with linear time access to elements, and fixed time insertion/deletion at any po...
__remove_return_type unique(_BinPred __binary_pred)
Remove consecutive elements satisfying a predicate.
iterator begin() noexcept
const_iterator before_begin() const noexcept
void reverse() noexcept
Reverse the elements in list.
forward_list()=default
Creates a forward_list with no elements.
~forward_list() noexcept
The forward_list dtor.
iterator erase_after(const_iterator __pos)
Removes the element pointed to by the iterator following pos.
forward_list(forward_list &&__list, const _Alloc &__al) noexcept(_Node_alloc_traits::_S_always_equal())
Move constructor with allocator argument.
void swap(forward_list &__list) noexcept
Swaps data with another forward_list.
const_reference front() const
forward_list(const forward_list &__list, const _Alloc &__al)
Copy constructor with allocator argument.
void merge(forward_list &&__list)
Merge sorted lists.
forward_list(const _Alloc &__al) noexcept
Creates a forward_list with no elements.
void sort()
Sort the elements of the list.
iterator before_begin() noexcept
iterator emplace_after(const_iterator __pos, _Args &&... __args)
Constructs object in forward_list after the specified iterator.
forward_list(const forward_list &__list)
The forward_list copy constructor.
iterator insert_after(const_iterator __pos, const _Tp &__val)
Inserts given value into forward_list after specified iterator.
forward_list & operator=(forward_list &&__list) noexcept(_Node_alloc_traits::_S_nothrow_move())
The forward_list move assignment operator.
void resize(size_type __sz)
Resizes the forward_list to the specified number of elements.
forward_list & operator=(const forward_list &__list)
The forward_list assignment operator.
__remove_return_type remove_if(_Pred __pred)
Remove all elements satisfying a predicate.
forward_list(size_type __n, const _Tp &__value, const _Alloc &__al=_Alloc())
Creates a forward_list with copies of an exemplar element.
void assign(size_type __n, const _Tp &__val)
Assigns a given value to a forward_list.
const_iterator begin() const noexcept
void splice_after(const_iterator __pos, forward_list &&__list) noexcept
Insert contents of another forward_list.
const_iterator cbefore_begin() const noexcept
forward_list & operator=(std::initializer_list< _Tp > __il)
The forward_list initializer list assignment operator.
forward_list(std::initializer_list< _Tp > __il, const _Alloc &__al=_Alloc())
Builds a forward_list from an initializer_list.
reference emplace_front(_Args &&... __args)
Constructs object in forward_list at the front of the list.
forward_list(size_type __n, const _Alloc &__al=_Alloc())
Creates a forward_list with default constructed elements.
iterator insert_after(const_iterator __pos, std::initializer_list< _Tp > __il)
Inserts the contents of an initializer_list into forward_list after the specified iterator.
const_iterator end() const noexcept
void splice_after(const_iterator __pos, forward_list &&, const_iterator __before, const_iterator __last) noexcept
Insert range from another forward_list.
iterator erase_after(const_iterator __pos, const_iterator __last)
Remove a range of elements.
__remove_return_type unique()
Remove consecutive duplicate elements.
void clear() noexcept
Erases all the elements.
__remove_return_type remove(const _Tp &__val)
Remove all elements equal to value.
const_iterator cend() const noexcept
void assign(_InputIterator __first, _InputIterator __last)
Assigns a range to a forward_list.
bool empty() const noexcept
allocator_type get_allocator() const noexcept
Get a copy of the memory allocation object.
void push_front(const _Tp &__val)
Add data to the front of the forward_list.
forward_list(forward_list &&)=default
The forward_list move constructor.
forward_list(_InputIterator __first, _InputIterator __last, const _Alloc &__al=_Alloc())
Builds a forward_list from a range.
void splice_after(const_iterator __pos, forward_list &, const_iterator __before, const_iterator __last) noexcept
Insert range from another forward_list.
const_iterator cbegin() const noexcept
void pop_front()
Removes first element.
void assign(std::initializer_list< _Tp > __il)
Assigns an initializer_list to a forward_list.
size_type max_size() const noexcept
Uniform interface to all pointer-like types.
One of the comparison functors.
One of the comparison functors.
Forward iterators support a superset of input iterator operations.
Uniform interface to C++98 and C++11 allocators.
static constexpr pointer allocate(_Alloc &__a, size_type __n)
Allocate memory.
static constexpr void deallocate(_Alloc &__a, pointer __p, size_type __n)
Deallocate memory.
static constexpr size_type max_size(const _Alloc &__a) noexcept
The maximum supported allocation size.