62#if __cplusplus >= 201103L
66#if __cplusplus > 201703L
72namespace std _GLIBCXX_VISIBILITY(default)
74_GLIBCXX_BEGIN_NAMESPACE_VERSION
75_GLIBCXX_BEGIN_NAMESPACE_CONTAINER
91#ifndef _GLIBCXX_DEQUE_BUF_SIZE
92#define _GLIBCXX_DEQUE_BUF_SIZE 512
95 _GLIBCXX_CONSTEXPR
inline size_t
96 __deque_buf_size(
size_t __size)
112 template<
typename _Tp,
typename _Ref,
typename _Ptr>
115#if __cplusplus < 201103L
118 typedef _Tp* _Elt_pointer;
119 typedef _Tp** _Map_pointer;
122 template<
typename _CvTp>
131 static size_t _S_buffer_size() _GLIBCXX_NOEXCEPT
132 {
return __deque_buf_size(
sizeof(_Tp)); }
135 typedef _Tp value_type;
136 typedef _Ptr pointer;
137 typedef _Ref reference;
138 typedef size_t size_type;
139 typedef ptrdiff_t difference_type;
143 _Elt_pointer _M_first;
144 _Elt_pointer _M_last;
145 _Map_pointer _M_node;
148 : _M_cur(__x), _M_first(*__y),
149 _M_last(*__y + _S_buffer_size()), _M_node(__y) { }
152 : _M_cur(), _M_first(), _M_last(), _M_node() { }
154#if __cplusplus < 201103L
157 : _M_cur(__x._M_cur), _M_first(__x._M_first),
158 _M_last(__x._M_last), _M_node(__x._M_node) { }
161 template<
typename _Iter,
162 typename = _Require<is_same<_Self, const_iterator>,
165 : _M_cur(__x._M_cur), _M_first(__x._M_first),
166 _M_last(__x._M_last), _M_node(__x._M_node) { }
169 : _M_cur(__x._M_cur), _M_first(__x._M_first),
170 _M_last(__x._M_last), _M_node(__x._M_node) { }
176 _M_const_cast()
const _GLIBCXX_NOEXCEPT
177 {
return iterator(_M_cur, _M_node); }
181 operator*()
const _GLIBCXX_NOEXCEPT
186 operator->()
const _GLIBCXX_NOEXCEPT
190 operator++() _GLIBCXX_NOEXCEPT
193 if (_M_cur == _M_last)
202 operator++(
int) _GLIBCXX_NOEXCEPT
210 operator--() _GLIBCXX_NOEXCEPT
212 if (_M_cur == _M_first)
222 operator--(
int) _GLIBCXX_NOEXCEPT
230 operator+=(difference_type __n) _GLIBCXX_NOEXCEPT
232 const difference_type __offset = __n + (_M_cur - _M_first);
233 if (__offset >= 0 && __offset < difference_type(_S_buffer_size()))
237 const difference_type __node_offset =
238 __offset > 0 ? __offset / difference_type(_S_buffer_size())
239 : -difference_type((-__offset - 1)
240 / _S_buffer_size()) - 1;
242 _M_cur = _M_first + (__offset - __node_offset
243 * difference_type(_S_buffer_size()));
249 operator-=(difference_type __n) _GLIBCXX_NOEXCEPT
250 {
return *
this += -__n; }
254 operator[](difference_type __n)
const _GLIBCXX_NOEXCEPT
255 {
return *(*
this + __n); }
265 _M_node = __new_node;
266 _M_first = *__new_node;
267 _M_last = _M_first + difference_type(_S_buffer_size());
272 operator==(
const _Self& __x,
const _Self& __y) _GLIBCXX_NOEXCEPT
273 {
return __x._M_cur == __y._M_cur; }
278 template<
typename _RefR,
typename _PtrR>
281 operator==(
const _Self& __x,
282 const _Deque_iterator<_Tp, _RefR, _PtrR>& __y)
284 {
return __x._M_cur == __y._M_cur; }
286#if __cpp_lib_three_way_comparison
288 friend strong_ordering
289 operator<=>(
const _Self& __x,
const _Self& __y)
noexcept
291 if (
const auto __cmp = __x._M_node <=> __y._M_node; __cmp != 0)
293 return __x._M_cur <=> __y._M_cur;
298 operator!=(
const _Self& __x,
const _Self& __y) _GLIBCXX_NOEXCEPT
299 {
return !(__x == __y); }
301 template<
typename _RefR,
typename _PtrR>
304 operator!=(
const _Self& __x,
305 const _Deque_iterator<_Tp, _RefR, _PtrR>& __y)
307 {
return !(__x == __y); }
311 operator<(
const _Self& __x,
const _Self& __y) _GLIBCXX_NOEXCEPT
313 return (__x._M_node == __y._M_node)
314 ? (__x._M_cur < __y._M_cur) : (__x._M_node < __y._M_node);
317 template<
typename _RefR,
typename _PtrR>
320 operator<(
const _Self& __x,
321 const _Deque_iterator<_Tp, _RefR, _PtrR>& __y)
324 return (__x._M_node == __y._M_node)
325 ? (__x._M_cur < __y._M_cur) : (__x._M_node < __y._M_node);
330 operator>(
const _Self& __x,
const _Self& __y) _GLIBCXX_NOEXCEPT
331 {
return __y < __x; }
333 template<
typename _RefR,
typename _PtrR>
336 operator>(
const _Self& __x,
337 const _Deque_iterator<_Tp, _RefR, _PtrR>& __y)
339 {
return __y < __x; }
343 operator<=(
const _Self& __x,
const _Self& __y) _GLIBCXX_NOEXCEPT
344 {
return !(__y < __x); }
346 template<
typename _RefR,
typename _PtrR>
349 operator<=(
const _Self& __x,
350 const _Deque_iterator<_Tp, _RefR, _PtrR>& __y)
352 {
return !(__y < __x); }
356 operator>=(
const _Self& __x,
const _Self& __y) _GLIBCXX_NOEXCEPT
357 {
return !(__x < __y); }
359 template<
typename _RefR,
typename _PtrR>
362 operator>=(
const _Self& __x,
363 const _Deque_iterator<_Tp, _RefR, _PtrR>& __y)
365 {
return !(__x < __y); }
369 friend difference_type
370 operator-(
const _Self& __x,
const _Self& __y) _GLIBCXX_NOEXCEPT
372 return difference_type(_S_buffer_size())
373 * (__x._M_node - __y._M_node - bool(__x._M_node))
374 + (__x._M_cur - __x._M_first)
375 + (__y._M_last - __y._M_cur);
382 template<
typename _RefR,
typename _PtrR>
384 friend difference_type
385 operator-(
const _Self& __x,
386 const _Deque_iterator<_Tp, _RefR, _PtrR>& __y)
389 return difference_type(_S_buffer_size())
390 * (__x._M_node - __y._M_node - bool(__x._M_node))
391 + (__x._M_cur - __x._M_first)
392 + (__y._M_last - __y._M_cur);
397 operator+(
const _Self& __x, difference_type __n) _GLIBCXX_NOEXCEPT
406 operator-(
const _Self& __x, difference_type __n) _GLIBCXX_NOEXCEPT
415 operator+(difference_type __n,
const _Self& __x) _GLIBCXX_NOEXCEPT
416 {
return __x + __n; }
429 template<
typename _Tp,
typename _Alloc>
434 rebind<_Tp>::other _Tp_alloc_type;
437#if __cplusplus < 201103L
439 typedef const _Tp* _Ptr_const;
441 typedef typename _Alloc_traits::pointer _Ptr;
442 typedef typename _Alloc_traits::const_pointer _Ptr_const;
445 typedef typename _Alloc_traits::template rebind<_Ptr>::other
449 typedef _Alloc allocator_type;
452 get_allocator()
const _GLIBCXX_NOEXCEPT
453 {
return allocator_type(_M_get_Tp_allocator()); }
466 _Deque_base(
const allocator_type& __a,
size_t __num_elements)
474#if __cplusplus >= 201103L
476 : _M_impl(
std::move(__x._M_get_Tp_allocator()))
479 if (__x._M_impl._M_map)
480 this->_M_impl._M_swap_data(__x._M_impl);
484 : _M_impl(
std::move(__x._M_impl), _Tp_alloc_type(__a))
485 { __x._M_initialize_map(0); }
490 if (__x.get_allocator() == __a)
492 if (__x._M_impl._M_map)
495 this->_M_impl._M_swap_data(__x._M_impl);
507 typedef typename iterator::_Map_pointer _Map_pointer;
509 struct _Deque_impl_data
516 _Deque_impl_data() _GLIBCXX_NOEXCEPT
517 : _M_map(), _M_map_size(), _M_start(), _M_finish()
520#if __cplusplus >= 201103L
521 _Deque_impl_data(
const _Deque_impl_data&) =
default;
523 operator=(
const _Deque_impl_data&) =
default;
525 _Deque_impl_data(_Deque_impl_data&& __x) noexcept
526 : _Deque_impl_data(__x)
527 { __x = _Deque_impl_data(); }
531 _M_swap_data(_Deque_impl_data& __x) _GLIBCXX_NOEXCEPT
543 :
public _Tp_alloc_type,
public _Deque_impl_data
545 _Deque_impl() _GLIBCXX_NOEXCEPT_IF(
550 _Deque_impl(
const _Tp_alloc_type& __a) _GLIBCXX_NOEXCEPT
551 : _Tp_alloc_type(__a)
554#if __cplusplus >= 201103L
555 _Deque_impl(_Deque_impl&&) =
default;
557 _Deque_impl(_Tp_alloc_type&& __a) noexcept
561 _Deque_impl(_Deque_impl&& __d, _Tp_alloc_type&& __a)
568 _M_get_Tp_allocator() _GLIBCXX_NOEXCEPT
569 {
return this->_M_impl; }
571 const _Tp_alloc_type&
572 _M_get_Tp_allocator()
const _GLIBCXX_NOEXCEPT
573 {
return this->_M_impl; }
576 _M_get_map_allocator()
const _GLIBCXX_NOEXCEPT
577 {
return _Map_alloc_type(_M_get_Tp_allocator()); }
583 return _Traits::allocate(_M_impl, __deque_buf_size(
sizeof(_Tp)));
587 _M_deallocate_node(_Ptr __p) _GLIBCXX_NOEXCEPT
590 _Traits::deallocate(_M_impl, __p, __deque_buf_size(
sizeof(_Tp)));
594 _M_allocate_map(
size_t __n)
596 _Map_alloc_type __map_alloc = _M_get_map_allocator();
601 _M_deallocate_map(_Map_pointer __p,
size_t __n) _GLIBCXX_NOEXCEPT
603 _Map_alloc_type __map_alloc = _M_get_map_allocator();
608 void _M_create_nodes(_Map_pointer __nstart, _Map_pointer __nfinish);
609 void _M_destroy_nodes(_Map_pointer __nstart,
610 _Map_pointer __nfinish) _GLIBCXX_NOEXCEPT;
611 enum { _S_initial_map_size = 8 };
616 template<
typename _Tp,
typename _Alloc>
617 _Deque_base<_Tp, _Alloc>::
618 ~_Deque_base() _GLIBCXX_NOEXCEPT
620 if (this->_M_impl._M_map)
622 _M_destroy_nodes(this->_M_impl._M_start._M_node,
623 this->_M_impl._M_finish._M_node + 1);
624 _M_deallocate_map(this->_M_impl._M_map, this->_M_impl._M_map_size);
636 template<
typename _Tp,
typename _Alloc>
641 const size_t __num_nodes = (__num_elements / __deque_buf_size(
sizeof(_Tp))
644 this->_M_impl._M_map_size =
std::max((
size_t) _S_initial_map_size,
645 size_t(__num_nodes + 2));
646 this->_M_impl._M_map = _M_allocate_map(this->_M_impl._M_map_size);
653 _Map_pointer __nstart = (this->_M_impl._M_map
654 + (this->_M_impl._M_map_size - __num_nodes) / 2);
655 _Map_pointer __nfinish = __nstart + __num_nodes;
658 { _M_create_nodes(__nstart, __nfinish); }
661 _M_deallocate_map(this->_M_impl._M_map, this->_M_impl._M_map_size);
662 this->_M_impl._M_map = _Map_pointer();
663 this->_M_impl._M_map_size = 0;
664 __throw_exception_again;
667 this->_M_impl._M_start._M_set_node(__nstart);
668 this->_M_impl._M_finish._M_set_node(__nfinish - 1);
669 this->_M_impl._M_start._M_cur = _M_impl._M_start._M_first;
670 this->_M_impl._M_finish._M_cur = (this->_M_impl._M_finish._M_first
672 % __deque_buf_size(
sizeof(_Tp)));
675 template<
typename _Tp,
typename _Alloc>
683 for (__cur = __nstart; __cur < __nfinish; ++__cur)
684 *__cur = this->_M_allocate_node();
688 _M_destroy_nodes(__nstart, __cur);
689 __throw_exception_again;
693 template<
typename _Tp,
typename _Alloc>
695 _Deque_base<_Tp, _Alloc>::
696 _M_destroy_nodes(_Map_pointer __nstart,
697 _Map_pointer __nfinish) _GLIBCXX_NOEXCEPT
699 for (_Map_pointer __n = __nstart; __n < __nfinish; ++__n)
700 _M_deallocate_node(*__n);
787 template<
typename _Tp,
typename _Alloc = std::allocator<_Tp> >
790#ifdef _GLIBCXX_CONCEPT_CHECKS
792 typedef typename _Alloc::value_type _Alloc_value_type;
793# if __cplusplus < 201103L
794 __glibcxx_class_requires(_Tp, _SGIAssignableConcept)
796 __glibcxx_class_requires2(_Tp, _Alloc_value_type, _SameTypeConcept)
799#if __cplusplus >= 201103L
801 "std::deque must have a non-const, non-volatile value_type");
802# if __cplusplus > 201703L || defined __STRICT_ANSI__
804 "std::deque must have the same value_type as its allocator");
809 typedef typename _Base::_Tp_alloc_type _Tp_alloc_type;
811 typedef typename _Base::_Map_pointer _Map_pointer;
814 typedef _Tp value_type;
815 typedef typename _Alloc_traits::pointer pointer;
816 typedef typename _Alloc_traits::const_pointer const_pointer;
817 typedef typename _Alloc_traits::reference reference;
818 typedef typename _Alloc_traits::const_reference const_reference;
823 typedef size_t size_type;
824 typedef ptrdiff_t difference_type;
825 typedef _Alloc allocator_type;
828 static size_t _S_buffer_size() _GLIBCXX_NOEXCEPT
829 {
return __deque_buf_size(
sizeof(_Tp)); }
833 using _Base::_M_create_nodes;
834 using _Base::_M_destroy_nodes;
835 using _Base::_M_allocate_node;
836 using _Base::_M_deallocate_node;
837 using _Base::_M_allocate_map;
838 using _Base::_M_deallocate_map;
839 using _Base::_M_get_Tp_allocator;
845 using _Base::_M_impl;
854#if __cplusplus >= 201103L
868#if __cplusplus >= 201103L
878 deque(size_type __n,
const allocator_type& __a = allocator_type())
879 :
_Base(__a, _S_check_init_len(__n, __a))
880 { _M_default_initialize(); }
890 deque(size_type __n,
const value_type& __value,
891 const allocator_type& __a = allocator_type())
892 :
_Base(__a, _S_check_init_len(__n, __a))
904 deque(size_type __n,
const value_type& __value = value_type(),
905 const allocator_type& __a = allocator_type())
906 : _Base(__a, _S_check_init_len(__n, __a))
920 { std::__uninitialized_copy_a(__x.
begin(), __x.
end(),
921 this->_M_impl._M_start,
922 _M_get_Tp_allocator()); }
924#if __cplusplus >= 201103L
936 deque(
const deque& __x,
const __type_identity_t<allocator_type>& __a)
938 { std::__uninitialized_copy_a(__x.
begin(), __x.
end(),
939 this->_M_impl._M_start,
940 _M_get_Tp_allocator()); }
943 deque(
deque&& __x,
const __type_identity_t<allocator_type>& __a)
955 if (__x.get_allocator() != __a && !__x.empty())
957 std::__uninitialized_move_a(__x.begin(), __x.end(),
958 this->_M_impl._M_start,
959 _M_get_Tp_allocator());
977 const allocator_type& __a = allocator_type())
1000#if __cplusplus >= 201103L
1001 template<
typename _InputIterator,
1002 typename = std::_RequireInputIter<_InputIterator>>
1003 deque(_InputIterator __first, _InputIterator __last,
1004 const allocator_type& __a = allocator_type())
1011 template<
typename _InputIterator>
1012 deque(_InputIterator __first, _InputIterator __last,
1013 const allocator_type& __a = allocator_type())
1017 typedef typename std::__is_integer<_InputIterator>::__type _Integral;
1018 _M_initialize_dispatch(__first, __last, _Integral());
1028 { _M_destroy_data(
begin(),
end(), _M_get_Tp_allocator()); }
1042#if __cplusplus >= 201103L
1055 _M_move_assign1(
std::move(__x), __always_equal{});
1073 _M_assign_aux(__l.begin(), __l.end(),
1090 assign(size_type __n,
const value_type& __val)
1091 { _M_fill_assign(__n, __val); }
1105#if __cplusplus >= 201103L
1106 template<
typename _InputIterator,
1107 typename = std::_RequireInputIter<_InputIterator>>
1109 assign(_InputIterator __first, _InputIterator __last)
1112 template<
typename _InputIterator>
1114 assign(_InputIterator __first, _InputIterator __last)
1116 typedef typename std::__is_integer<_InputIterator>::__type _Integral;
1117 _M_assign_dispatch(__first, __last, _Integral());
1121#if __cplusplus >= 201103L
1142 {
return _Base::get_allocator(); }
1152 {
return this->_M_impl._M_start; }
1161 {
return this->_M_impl._M_start; }
1171 {
return this->_M_impl._M_finish; }
1181 {
return this->_M_impl._M_finish; }
1199 const_reverse_iterator
1219 const_reverse_iterator
1223#if __cplusplus >= 201103L
1231 {
return this->_M_impl._M_start; }
1241 {
return this->_M_impl._M_finish; }
1249 const_reverse_iterator
1259 const_reverse_iterator
1269 {
return this->_M_impl._M_finish - this->_M_impl._M_start; }
1275 {
return _S_max_size(_M_get_Tp_allocator()); }
1277#if __cplusplus >= 201103L
1290 const size_type __len =
size();
1291 if (__new_size > __len)
1292 _M_default_append(__new_size - __len);
1293 else if (__new_size < __len)
1294 _M_erase_at_end(this->_M_impl._M_start
1295 + difference_type(__new_size));
1310 resize(size_type __new_size,
const value_type& __x)
1324 resize(size_type __new_size, value_type __x = value_type())
1327 const size_type __len =
size();
1328 if (__new_size > __len)
1329 _M_fill_insert(this->_M_impl._M_finish, __new_size - __len, __x);
1330 else if (__new_size < __len)
1331 _M_erase_at_end(this->_M_impl._M_start
1332 + difference_type(__new_size));
1335#if __cplusplus >= 201103L
1339 { _M_shrink_to_fit(); }
1346 _GLIBCXX_NODISCARD
bool
1348 {
return this->_M_impl._M_finish == this->_M_impl._M_start; }
1366 __glibcxx_requires_subscript(__n);
1367 return this->_M_impl._M_start[difference_type(__n)];
1385 __glibcxx_requires_subscript(__n);
1386 return this->_M_impl._M_start[difference_type(__n)];
1394 if (__n >= this->
size())
1395 __throw_out_of_range_fmt(__N(
"deque::_M_range_check: __n "
1396 "(which is %zu)>= this->size() "
1417 return (*
this)[__n];
1435 return (*
this)[__n];
1446 __glibcxx_requires_nonempty();
1458 __glibcxx_requires_nonempty();
1470 __glibcxx_requires_nonempty();
1484 __glibcxx_requires_nonempty();
1503 if (this->_M_impl._M_start._M_cur != this->_M_impl._M_start._M_first)
1505 _Alloc_traits::construct(this->_M_impl,
1506 this->_M_impl._M_start._M_cur - 1,
1508 --this->_M_impl._M_start._M_cur;
1514#if __cplusplus >= 201103L
1519 template<
typename... _Args>
1520#if __cplusplus > 201402L
1525 emplace_front(_Args&&... __args);
1540 if (this->_M_impl._M_finish._M_cur
1541 != this->_M_impl._M_finish._M_last - 1)
1543 _Alloc_traits::construct(this->_M_impl,
1544 this->_M_impl._M_finish._M_cur, __x);
1545 ++this->_M_impl._M_finish._M_cur;
1551#if __cplusplus >= 201103L
1556 template<
typename... _Args>
1557#if __cplusplus > 201402L
1562 emplace_back(_Args&&... __args);
1576 __glibcxx_requires_nonempty();
1577 if (this->_M_impl._M_start._M_cur
1578 != this->_M_impl._M_start._M_last - 1)
1580 _Alloc_traits::destroy(_M_get_Tp_allocator(),
1581 this->_M_impl._M_start._M_cur);
1582 ++this->_M_impl._M_start._M_cur;
1599 __glibcxx_requires_nonempty();
1600 if (this->_M_impl._M_finish._M_cur
1601 != this->_M_impl._M_finish._M_first)
1603 --this->_M_impl._M_finish._M_cur;
1604 _Alloc_traits::destroy(_M_get_Tp_allocator(),
1605 this->_M_impl._M_finish._M_cur);
1611#if __cplusplus >= 201103L
1621 template<
typename... _Args>
1623 emplace(const_iterator __position, _Args&&... __args);
1635 insert(const_iterator __position,
const value_type& __x);
1650#if __cplusplus >= 201103L
1677 auto __offset = __p -
cbegin();
1678 _M_range_insert_aux(__p._M_const_cast(), __l.begin(), __l.end(),
1680 return begin() + __offset;
1696 difference_type __offset = __position -
cbegin();
1697 _M_fill_insert(__position._M_const_cast(), __n, __x);
1698 return begin() + __offset;
1711 insert(
iterator __position, size_type __n,
const value_type& __x)
1712 { _M_fill_insert(__position, __n, __x); }
1715#if __cplusplus >= 201103L
1727 template<
typename _InputIterator,
1728 typename = std::_RequireInputIter<_InputIterator>>
1731 _InputIterator __last)
1733 difference_type __offset = __position -
cbegin();
1734 _M_range_insert_aux(__position._M_const_cast(), __first, __last,
1736 return begin() + __offset;
1749 template<
typename _InputIterator>
1752 _InputIterator __last)
1755 typedef typename std::__is_integer<_InputIterator>::__type _Integral;
1756 _M_insert_dispatch(__position, __first, __last, _Integral());
1774#if __cplusplus >= 201103L
1779 {
return _M_erase(__position._M_const_cast()); }
1798#if __cplusplus >= 201103L
1803 {
return _M_erase(__first._M_const_cast(), __last._M_const_cast()); }
1819#if __cplusplus >= 201103L
1820 __glibcxx_assert(_Alloc_traits::propagate_on_container_swap::value
1821 || _M_get_Tp_allocator() == __x._M_get_Tp_allocator());
1823 _M_impl._M_swap_data(__x._M_impl);
1824 _Alloc_traits::_S_on_swap(_M_get_Tp_allocator(),
1825 __x._M_get_Tp_allocator());
1836 { _M_erase_at_end(
begin()); }
1841#if __cplusplus < 201103L
1846 template<
typename _Integer>
1848 _M_initialize_dispatch(_Integer __n, _Integer __x, __true_type)
1850 _M_initialize_map(_S_check_init_len(
static_cast<size_type
>(__n),
1851 _M_get_Tp_allocator()));
1856 template<
typename _InputIterator>
1858 _M_initialize_dispatch(_InputIterator __first, _InputIterator __last,
1867 _S_check_init_len(
size_t __n,
const allocator_type& __a)
1869 if (__n > _S_max_size(__a))
1870 __throw_length_error(
1871 __N(
"cannot create std::deque larger than max_size()"));
1876 _S_max_size(
const _Tp_alloc_type& __a) _GLIBCXX_NOEXCEPT
1878 const size_t __diffmax = __gnu_cxx::__numeric_traits<ptrdiff_t>::__max;
1880 return (
std::min)(__diffmax, __allocmax);
1895 template<
typename _InputIterator>
1901 template<
typename _ForwardIterator>
1920#if __cplusplus >= 201103L
1923 _M_default_initialize();
1929#if __cplusplus < 201103L
1934 template<
typename _Integer>
1936 _M_assign_dispatch(_Integer __n, _Integer __val, __true_type)
1937 { _M_fill_assign(__n, __val); }
1940 template<
typename _InputIterator>
1942 _M_assign_dispatch(_InputIterator __first, _InputIterator __last,
1948 template<
typename _InputIterator>
1950 _M_assign_aux(_InputIterator __first, _InputIterator __last,
1954 template<
typename _ForwardIterator>
1956 _M_assign_aux(_ForwardIterator __first, _ForwardIterator __last,
1962 _ForwardIterator __mid = __first;
1964 std::copy(__first, __mid,
begin());
1965 _M_range_insert_aux(
end(), __mid, __last,
1969 _M_erase_at_end(std::copy(__first, __last,
begin()));
1975 _M_fill_assign(size_type __n,
const value_type& __val)
1980 _M_fill_insert(
end(), __n -
size(), __val);
1984 _M_erase_at_end(
begin() + difference_type(__n));
1991#if __cplusplus < 201103L
1996 template<
typename... _Args>
1999 template<
typename... _Args>
2011#if __cplusplus < 201103L
2016 template<
typename _Integer>
2018 _M_insert_dispatch(iterator __pos,
2019 _Integer __n, _Integer __x, __true_type)
2020 { _M_fill_insert(__pos, __n, __x); }
2023 template<
typename _InputIterator>
2025 _M_insert_dispatch(iterator __pos,
2026 _InputIterator __first, _InputIterator __last,
2029 _M_range_insert_aux(__pos, __first, __last,
2035 template<
typename _InputIterator>
2037 _M_range_insert_aux(iterator __pos, _InputIterator __first,
2041 template<
typename _ForwardIterator>
2043 _M_range_insert_aux(iterator __pos, _ForwardIterator __first,
2050 _M_fill_insert(iterator __pos, size_type __n,
const value_type& __x);
2053#if __cplusplus < 201103L
2055 _M_insert_aux(iterator __pos,
const value_type& __x);
2057 template<
typename... _Args>
2059 _M_insert_aux(iterator __pos, _Args&&... __args);
2064 _M_insert_aux(iterator __pos, size_type __n,
const value_type& __x);
2067 template<
typename _ForwardIterator>
2069 _M_insert_aux(iterator __pos,
2070 _ForwardIterator __first, _ForwardIterator __last,
2077 _M_destroy_data_aux(iterator __first, iterator __last);
2081 template<
typename _Alloc1>
2083 _M_destroy_data(iterator __first, iterator __last,
const _Alloc1&)
2084 { _M_destroy_data_aux(__first, __last); }
2087 _M_destroy_data(iterator __first, iterator __last,
2090 if (!__has_trivial_destructor(value_type))
2091 _M_destroy_data_aux(__first, __last);
2096 _M_erase_at_begin(iterator __pos)
2098 _M_destroy_data(
begin(), __pos, _M_get_Tp_allocator());
2099 _M_destroy_nodes(this->_M_impl._M_start._M_node, __pos._M_node);
2100 this->_M_impl._M_start = __pos;
2106 _M_erase_at_end(iterator __pos)
2108 _M_destroy_data(__pos,
end(), _M_get_Tp_allocator());
2109 _M_destroy_nodes(__pos._M_node + 1,
2110 this->_M_impl._M_finish._M_node + 1);
2111 this->_M_impl._M_finish = __pos;
2115 _M_erase(iterator __pos);
2118 _M_erase(iterator __first, iterator __last);
2120#if __cplusplus >= 201103L
2123 _M_default_append(size_type __n);
2134 const size_type __vacancies = this->_M_impl._M_start._M_cur
2135 - this->_M_impl._M_start._M_first;
2136 if (__n > __vacancies)
2138 return this->_M_impl._M_start - difference_type(__n);
2144 const size_type __vacancies = (this->_M_impl._M_finish._M_last
2145 - this->_M_impl._M_finish._M_cur) - 1;
2146 if (__n > __vacancies)
2148 return this->_M_impl._M_finish + difference_type(__n);
2170 if (__nodes_to_add + 1 > this->_M_impl._M_map_size
2171 - (this->_M_impl._M_finish._M_node - this->_M_impl._M_map))
2178 if (__nodes_to_add > size_type(this->_M_impl._M_start._M_node
2179 - this->_M_impl._M_map))
2187#if __cplusplus >= 201103L
2193 this->_M_impl._M_swap_data(__x._M_impl);
2195 std::__alloc_on_move(_M_get_Tp_allocator(), __x._M_get_Tp_allocator());
2204 if (_M_get_Tp_allocator() == __x._M_get_Tp_allocator())
2207 constexpr bool __move_storage =
2208 _Alloc_traits::_S_propagate_on_move_assign();
2209 _M_move_assign2(
std::move(__x), __bool_constant<__move_storage>());
2214 template<
typename... _Args>
2216 _M_replace_map(_Args&&... __args)
2219 deque __newobj(std::forward<_Args>(__args)...);
2222 _M_deallocate_node(*
begin()._M_node);
2223 _M_deallocate_map(this->_M_impl._M_map, this->_M_impl._M_map_size);
2224 this->_M_impl._M_map =
nullptr;
2225 this->_M_impl._M_map_size = 0;
2227 this->_M_impl._M_swap_data(__newobj._M_impl);
2235 auto __alloc = __x._M_get_Tp_allocator();
2240 _M_get_Tp_allocator() =
std::move(__alloc);
2248 if (__x._M_get_Tp_allocator() == this->_M_get_Tp_allocator())
2252 _M_replace_map(
std::move(__x), __x.get_allocator());
2258 _M_assign_aux(std::make_move_iterator(__x.begin()),
2259 std::make_move_iterator(__x.end()),
2267#if __cpp_deduction_guides >= 201606
2268 template<
typename _InputIterator,
typename _ValT
2269 =
typename iterator_traits<_InputIterator>::value_type,
2270 typename _Allocator = allocator<_ValT>,
2271 typename = _RequireInputIter<_InputIterator>,
2272 typename = _RequireAllocator<_Allocator>>
2273 deque(_InputIterator, _InputIterator, _Allocator = _Allocator())
2274 -> deque<_ValT, _Allocator>;
2287 template<
typename _Tp,
typename _Alloc>
2294#if __cpp_lib_three_way_comparison
2306 template<
typename _Tp,
typename _Alloc>
2308 inline __detail::__synth3way_t<_Tp>
2309 operator<=>(
const deque<_Tp, _Alloc>& __x,
const deque<_Tp, _Alloc>& __y)
2311 return std::lexicographical_compare_three_way(__x.begin(), __x.end(),
2312 __y.begin(), __y.end(),
2313 __detail::__synth3way);
2327 template<
typename _Tp,
typename _Alloc>
2331 {
return std::lexicographical_compare(__x.
begin(), __x.
end(),
2335 template<
typename _Tp,
typename _Alloc>
2339 {
return !(__x == __y); }
2342 template<
typename _Tp,
typename _Alloc>
2346 {
return __y < __x; }
2349 template<
typename _Tp,
typename _Alloc>
2353 {
return !(__y < __x); }
2356 template<
typename _Tp,
typename _Alloc>
2360 {
return !(__x < __y); }
2364 template<
typename _Tp,
typename _Alloc>
2367 _GLIBCXX_NOEXCEPT_IF(
noexcept(__x.swap(__y)))
2370#undef _GLIBCXX_DEQUE_BUF_SIZE
2372_GLIBCXX_END_NAMESPACE_CONTAINER
2374#if __cplusplus >= 201103L
2378 struct __is_bitwise_relocatable<_GLIBCXX_STD_C::deque<_Tp>>
2382_GLIBCXX_END_NAMESPACE_VERSION
#define _GLIBCXX_DEQUE_BUF_SIZE
This function controls the size of memory nodes.
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.
constexpr const _Tp & max(const _Tp &, const _Tp &)
This does what you think it does.
constexpr const _Tp & min(const _Tp &, const _Tp &)
This does what you think it does.
constexpr iterator_traits< _Iter >::iterator_category __iterator_category(const _Iter &)
ISO C++ entities toplevel namespace is std.
typename pointer_traits< _Ptr >::template rebind< _Tp > __ptr_rebind
Convenience alias for rebinding pointers.
constexpr iterator_traits< _InputIterator >::difference_type distance(_InputIterator __first, _InputIterator __last)
A generalization of pointer arithmetic.
constexpr void advance(_InputIterator &__i, _Distance __n)
A generalization of pointer arithmetic.
is_nothrow_default_constructible
__detected_or_t< typename is_empty< _Alloc >::type, __equal, _Alloc > is_always_equal
Whether all instances of the allocator type compare equal.
The standard allocator, as per C++03 [20.4.1].
void _M_set_node(_Map_pointer __new_node) noexcept
void _M_initialize_map(size_t)
Layout storage.
A standard container using fixed-size memory allocation and constant-time manipulation of elements at...
reverse_iterator rbegin() noexcept
deque(const deque &__x)
Deque copy constructor.
const_reference at(size_type __n) const
Provides access to the data contained in the deque.
reverse_iterator rend() noexcept
iterator erase(const_iterator __position)
Remove element at given position.
const_reference back() const noexcept
const_reverse_iterator crend() const noexcept
void _M_pop_front_aux()
Helper functions for push_* and pop_*.
void pop_back() noexcept
Removes last element.
size_type size() const noexcept
void _M_reallocate_map(size_type __nodes_to_add, bool __add_at_front)
Memory-handling helpers for the major map.
const_iterator cbegin() const noexcept
void resize(size_type __new_size)
Resizes the deque to the specified number of elements.
const_reverse_iterator rend() const noexcept
iterator _M_reserve_elements_at_front(size_type __n)
Memory-handling helpers for the previous internal insert functions.
iterator emplace(const_iterator __position, _Args &&... __args)
Inserts an object in deque before specified iterator.
void pop_front() noexcept
Removes first element.
allocator_type get_allocator() const noexcept
Get a copy of the memory allocation object.
void swap(deque &__x) noexcept
Swaps data with another deque.
reference operator[](size_type __n) noexcept
Subscript access to the data contained in the deque.
reference at(size_type __n)
Provides access to the data contained in the deque.
deque(size_type __n, const allocator_type &__a=allocator_type())
Creates a deque with default constructed elements.
bool empty() const noexcept
const_reference operator[](size_type __n) const noexcept
Subscript access to the data contained in the deque.
size_type max_size() const noexcept
void push_front(const value_type &__x)
Add data to the front of the deque.
void resize(size_type __new_size, const value_type &__x)
Resizes the deque to the specified number of elements.
const_reference front() const noexcept
void assign(size_type __n, const value_type &__val)
Assigns a given value to a deque.
deque & operator=(initializer_list< value_type > __l)
Assigns an initializer list to a deque.
void _M_fill_initialize(const value_type &__value)
Fills the deque with copies of value.
iterator insert(const_iterator __position, const value_type &__x)
Inserts given value into deque before specified iterator.
deque(const deque &__x, const __type_identity_t< allocator_type > &__a)
Copy constructor with alternative allocator.
void _M_new_elements_at_back(size_type __new_elements)
Memory-handling helpers for the previous internal insert functions.
iterator insert(const_iterator __p, initializer_list< value_type > __l)
Inserts an initializer list into the deque.
deque(size_type __n, const value_type &__value, const allocator_type &__a=allocator_type())
Creates a deque with copies of an exemplar element.
const_reverse_iterator crbegin() const noexcept
void _M_reserve_map_at_back(size_type __nodes_to_add=1)
Memory-handling helpers for the major map.
reference back() noexcept
void _M_new_elements_at_front(size_type __new_elements)
Memory-handling helpers for the previous internal insert functions.
deque()=default
Creates a deque with no elements.
void _M_push_back_aux(_Args &&... __args)
Helper functions for push_* and pop_*.
deque & operator=(deque &&__x) noexcept(_Alloc_traits::_S_always_equal())
Deque move assignment operator.
void push_back(const value_type &__x)
Add data to the end of the deque.
deque(const allocator_type &__a)
Creates a deque with no elements.
void _M_reserve_map_at_front(size_type __nodes_to_add=1)
Memory-handling helpers for the major map.
void _M_push_front_aux(_Args &&... __args)
Helper functions for push_* and pop_*.
void _M_range_check(size_type __n) const
Safety check used only from at().
void assign(initializer_list< value_type > __l)
Assigns an initializer list to a deque.
deque(initializer_list< value_type > __l, const allocator_type &__a=allocator_type())
Builds a deque from an initializer list.
void shrink_to_fit() noexcept
void assign(_InputIterator __first, _InputIterator __last)
Assigns a range to a deque.
deque(_InputIterator __first, _InputIterator __last, const allocator_type &__a=allocator_type())
Builds a deque from a range.
const_iterator begin() const noexcept
deque & operator=(const deque &__x)
Deque assignment operator.
const_iterator end() const noexcept
iterator insert(const_iterator __position, size_type __n, const value_type &__x)
Inserts a number of copies of given data into the deque.
iterator insert(const_iterator __position, value_type &&__x)
Inserts given rvalue into deque before specified iterator.
void _M_pop_back_aux()
Helper functions for push_* and pop_*.
void _M_range_initialize(_InputIterator __first, _InputIterator __last, std::input_iterator_tag)
Fills the deque with whatever is in [first,last).
reference front() noexcept
iterator _M_reserve_elements_at_back(size_type __n)
Memory-handling helpers for the previous internal insert functions.
const_iterator cend() const noexcept
iterator insert(const_iterator __position, _InputIterator __first, _InputIterator __last)
Inserts a range into the deque.
const_reverse_iterator rbegin() const noexcept
deque(deque &&__x, const __type_identity_t< allocator_type > &__a)
Move constructor with alternative allocator.
iterator begin() noexcept
iterator erase(const_iterator __first, const_iterator __last)
Remove a range of elements.
deque(deque &&)=default
Deque move constructor.
Forward iterators support a superset of input iterator operations.
Random-access iterators support a superset of bidirectional 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 _Tp_alloc_type &__a) noexcept
The maximum supported allocation size.