59namespace std _GLIBCXX_VISIBILITY(default)
61_GLIBCXX_BEGIN_NAMESPACE_VERSION
62_GLIBCXX_BEGIN_NAMESPACE_CONTAINER
64 template<
typename _Tp,
typename _Alloc>
71 __throw_length_error(__N(
"vector::reserve"));
74 const size_type __old_size =
size();
76#if __cplusplus >= 201103L
77 if _GLIBCXX17_CONSTEXPR (_S_use_relocate())
79 __tmp = this->_M_allocate(__n);
80 _S_relocate(this->_M_impl._M_start, this->_M_impl._M_finish,
81 __tmp, _M_get_Tp_allocator());
87 _GLIBCXX_MAKE_MOVE_IF_NOEXCEPT_ITERATOR(this->_M_impl._M_start),
88 _GLIBCXX_MAKE_MOVE_IF_NOEXCEPT_ITERATOR(this->_M_impl._M_finish));
89 std::_Destroy(this->_M_impl._M_start, this->_M_impl._M_finish,
90 _M_get_Tp_allocator());
92 _GLIBCXX_ASAN_ANNOTATE_REINIT;
93 _M_deallocate(this->_M_impl._M_start,
94 this->_M_impl._M_end_of_storage
95 - this->_M_impl._M_start);
96 this->_M_impl._M_start = __tmp;
97 this->_M_impl._M_finish = __tmp + __old_size;
98 this->_M_impl._M_end_of_storage = this->_M_impl._M_start + __n;
102#if __cplusplus >= 201103L
103 template<
typename _Tp,
typename _Alloc>
104 template<
typename... _Args>
105#if __cplusplus > 201402L
107 typename vector<_Tp, _Alloc>::reference
114 if (this->_M_impl._M_finish != this->_M_impl._M_end_of_storage)
116 _GLIBCXX_ASAN_ANNOTATE_GROW(1);
117 _Alloc_traits::construct(this->_M_impl, this->_M_impl._M_finish,
119 ++this->_M_impl._M_finish;
120 _GLIBCXX_ASAN_ANNOTATE_GREW(1);
124#if __cplusplus > 201402L
130 template<
typename _Tp,
typename _Alloc>
132 typename vector<_Tp, _Alloc>::iterator
134#if __cplusplus >= 201103L
135 insert(const_iterator __position,
const value_type& __x)
137 insert(iterator __position,
const value_type& __x)
140 const size_type __n = __position -
begin();
141 if (this->_M_impl._M_finish != this->_M_impl._M_end_of_storage)
143 __glibcxx_assert(__position != const_iterator());
144 if (!(__position != const_iterator()))
145 __builtin_unreachable();
147 if (__position ==
end())
149 _GLIBCXX_ASAN_ANNOTATE_GROW(1);
150 _Alloc_traits::construct(this->_M_impl, this->_M_impl._M_finish,
152 ++this->_M_impl._M_finish;
153 _GLIBCXX_ASAN_ANNOTATE_GREW(1);
157#if __cplusplus >= 201103L
158 const auto __pos =
begin() + (__position -
cbegin());
161 _Temporary_value __x_copy(
this, __x);
162 _M_insert_aux(__pos,
std::move(__x_copy._M_val()));
164 _M_insert_aux(__position, __x);
169#if __cplusplus >= 201103L
170 _M_realloc_insert(
begin() + (__position -
cbegin()), __x);
172 _M_realloc_insert(__position, __x);
175 return iterator(this->_M_impl._M_start + __n);
178 template<
typename _Tp,
typename _Alloc>
180 typename vector<_Tp, _Alloc>::iterator
184 if (__position + 1 !=
end())
185 _GLIBCXX_MOVE3(__position + 1,
end(), __position);
186 --this->_M_impl._M_finish;
187 _Alloc_traits::destroy(this->_M_impl, this->_M_impl._M_finish);
188 _GLIBCXX_ASAN_ANNOTATE_SHRINK(1);
192 template<
typename _Tp,
typename _Alloc>
194 typename vector<_Tp, _Alloc>::iterator
195 vector<_Tp, _Alloc>::
196 _M_erase(iterator __first, iterator __last)
198 if (__first != __last)
201 _GLIBCXX_MOVE3(__last,
end(), __first);
202 _M_erase_at_end(__first.base() + (
end() - __last));
207 template<
typename _Tp,
typename _Alloc>
215 _GLIBCXX_ASAN_ANNOTATE_REINIT;
216#if __cplusplus >= 201103L
217 if (_Alloc_traits::_S_propagate_on_copy_assign())
219 if (!_Alloc_traits::_S_always_equal()
220 && _M_get_Tp_allocator() != __x._M_get_Tp_allocator())
224 _M_deallocate(this->_M_impl._M_start,
225 this->_M_impl._M_end_of_storage
226 - this->_M_impl._M_start);
227 this->_M_impl._M_start =
nullptr;
228 this->_M_impl._M_finish =
nullptr;
229 this->_M_impl._M_end_of_storage =
nullptr;
231 std::__alloc_on_copy(_M_get_Tp_allocator(),
232 __x._M_get_Tp_allocator());
235 const size_type __xlen = __x.
size();
240 std::_Destroy(this->_M_impl._M_start, this->_M_impl._M_finish,
241 _M_get_Tp_allocator());
242 _M_deallocate(this->_M_impl._M_start,
243 this->_M_impl._M_end_of_storage
244 - this->_M_impl._M_start);
245 this->_M_impl._M_start = __tmp;
246 this->_M_impl._M_end_of_storage = this->_M_impl._M_start + __xlen;
248 else if (
size() >= __xlen)
251 end(), _M_get_Tp_allocator());
255 std::copy(__x._M_impl._M_start, __x._M_impl._M_start +
size(),
256 this->_M_impl._M_start);
257 std::__uninitialized_copy_a(__x._M_impl._M_start +
size(),
258 __x._M_impl._M_finish,
259 this->_M_impl._M_finish,
260 _M_get_Tp_allocator());
262 this->_M_impl._M_finish = this->_M_impl._M_start + __xlen;
267 template<
typename _Tp,
typename _Alloc>
273 if (__n > capacity())
275 vector __tmp(__n, __val, _M_get_Tp_allocator());
276 __tmp._M_impl._M_swap_data(this->_M_impl);
278 else if (__n >
size())
281 const size_type __add = __n -
size();
282 _GLIBCXX_ASAN_ANNOTATE_GROW(__add);
283 this->_M_impl._M_finish =
284 std::__uninitialized_fill_n_a(this->_M_impl._M_finish,
285 __add, __val, _M_get_Tp_allocator());
286 _GLIBCXX_ASAN_ANNOTATE_GREW(__add);
289 _M_erase_at_end(std::fill_n(this->_M_impl._M_start, __n, __val));
292 template<
typename _Tp,
typename _Alloc>
293 template<
typename _InputIterator>
298 std::input_iterator_tag)
300 pointer __cur(this->_M_impl._M_start);
301 for (; __first != __last && __cur != this->_M_impl._M_finish;
302 ++__cur, (void)++__first)
304 if (__first == __last)
305 _M_erase_at_end(__cur);
307 _M_range_insert(
end(), __first, __last,
311 template<
typename _Tp,
typename _Alloc>
312 template<
typename _ForwardIterator>
316 _M_assign_aux(_ForwardIterator __first, _ForwardIterator __last,
317 std::forward_iterator_tag)
321 if (__len > capacity())
323 _S_check_init_len(__len, _M_get_Tp_allocator());
324 pointer __tmp(_M_allocate_and_copy(__len, __first, __last));
325 std::_Destroy(this->_M_impl._M_start, this->_M_impl._M_finish,
326 _M_get_Tp_allocator());
327 _GLIBCXX_ASAN_ANNOTATE_REINIT;
328 _M_deallocate(this->_M_impl._M_start,
329 this->_M_impl._M_end_of_storage
330 - this->_M_impl._M_start);
331 this->_M_impl._M_start = __tmp;
332 this->_M_impl._M_finish = this->_M_impl._M_start + __len;
333 this->_M_impl._M_end_of_storage = this->_M_impl._M_finish;
335 else if (
size() >= __len)
336 _M_erase_at_end(std::copy(__first, __last, this->_M_impl._M_start));
339 _ForwardIterator __mid = __first;
341 std::copy(__first, __mid, this->_M_impl._M_start);
342 const size_type __attribute__((__unused__)) __n = __len -
size();
343 _GLIBCXX_ASAN_ANNOTATE_GROW(__n);
344 this->_M_impl._M_finish =
345 std::__uninitialized_copy_a(__mid, __last,
346 this->_M_impl._M_finish,
347 _M_get_Tp_allocator());
348 _GLIBCXX_ASAN_ANNOTATE_GREW(__n);
352#if __cplusplus >= 201103L
353 template<
typename _Tp,
typename _Alloc>
359 const auto __n = __position -
cbegin();
360 if (this->_M_impl._M_finish != this->_M_impl._M_end_of_storage)
361 if (__position ==
cend())
363 _GLIBCXX_ASAN_ANNOTATE_GROW(1);
364 _Alloc_traits::construct(this->_M_impl, this->_M_impl._M_finish,
366 ++this->_M_impl._M_finish;
367 _GLIBCXX_ASAN_ANNOTATE_GREW(1);
374 return iterator(this->_M_impl._M_start + __n);
377 template<
typename _Tp,
typename _Alloc>
378 template<
typename... _Args>
385 const auto __n = __position -
cbegin();
386 if (this->_M_impl._M_finish != this->_M_impl._M_end_of_storage)
387 if (__position ==
cend())
389 _GLIBCXX_ASAN_ANNOTATE_GROW(1);
390 _Alloc_traits::construct(this->_M_impl, this->_M_impl._M_finish,
392 ++this->_M_impl._M_finish;
393 _GLIBCXX_ASAN_ANNOTATE_GREW(1);
406 return iterator(this->_M_impl._M_start + __n);
409 template<
typename _Tp,
typename _Alloc>
410 template<
typename _Arg>
416 template<
typename _Tp,
typename _Alloc>
422 _GLIBCXX_ASAN_ANNOTATE_GROW(1);
423 _Alloc_traits::construct(this->_M_impl, this->_M_impl._M_finish,
424 _GLIBCXX_MOVE(*(this->_M_impl._M_finish - 1)));
425 ++this->_M_impl._M_finish;
426 _GLIBCXX_ASAN_ANNOTATE_GREW(1);
427#if __cplusplus < 201103L
430 _GLIBCXX_MOVE_BACKWARD3(__position.base(),
431 this->_M_impl._M_finish - 2,
432 this->_M_impl._M_finish - 1);
433#if __cplusplus < 201103L
434 *__position = __x_copy;
440#if __cplusplus >= 201103L
441 template<
typename _Tp,
typename _Alloc>
442 template<
typename... _Args>
448 template<
typename _Tp,
typename _Alloc>
455 _M_check_len(
size_type(1),
"vector::_M_realloc_insert");
456 pointer __old_start = this->_M_impl._M_start;
457 pointer __old_finish = this->_M_impl._M_finish;
459 pointer __new_start(this->_M_allocate(__len));
460 pointer __new_finish(__new_start);
468 _Alloc_traits::construct(this->_M_impl,
469 __new_start + __elems_before,
470#
if __cplusplus >= 201103L
475 __new_finish = pointer();
477#if __cplusplus >= 201103L
478 if _GLIBCXX17_CONSTEXPR (_S_use_relocate())
480 __new_finish = _S_relocate(__old_start, __position.base(),
481 __new_start, _M_get_Tp_allocator());
485 __new_finish = _S_relocate(__position.base(), __old_finish,
486 __new_finish, _M_get_Tp_allocator());
492 = std::__uninitialized_move_if_noexcept_a
493 (__old_start, __position.base(),
494 __new_start, _M_get_Tp_allocator());
499 = std::__uninitialized_move_if_noexcept_a
500 (__position.base(), __old_finish,
501 __new_finish, _M_get_Tp_allocator());
507 _Alloc_traits::destroy(this->_M_impl,
508 __new_start + __elems_before);
510 std::_Destroy(__new_start, __new_finish, _M_get_Tp_allocator());
511 _M_deallocate(__new_start, __len);
512 __throw_exception_again;
514#if __cplusplus >= 201103L
515 if _GLIBCXX17_CONSTEXPR (!_S_use_relocate())
517 std::_Destroy(__old_start, __old_finish, _M_get_Tp_allocator());
518 _GLIBCXX_ASAN_ANNOTATE_REINIT;
519 _M_deallocate(__old_start,
520 this->_M_impl._M_end_of_storage - __old_start);
521 this->_M_impl._M_start = __new_start;
522 this->_M_impl._M_finish = __new_finish;
523 this->_M_impl._M_end_of_storage = __new_start + __len;
526 template<
typename _Tp,
typename _Alloc>
534 if (__position.base() == this->_M_impl._M_finish)
535 _M_fill_append(__n, __x);
536 else if (
size_type(this->_M_impl._M_end_of_storage
537 - this->_M_impl._M_finish) >= __n)
539#if __cplusplus < 201103L
542 _Temporary_value __tmp(
this, __x);
546 pointer __old_finish(this->_M_impl._M_finish);
547 if (__elems_after > __n)
549 _GLIBCXX_ASAN_ANNOTATE_GROW(__n);
550 std::__uninitialized_move_a(__old_finish - __n,
553 _M_get_Tp_allocator());
554 this->_M_impl._M_finish += __n;
555 _GLIBCXX_ASAN_ANNOTATE_GREW(__n);
556 _GLIBCXX_MOVE_BACKWARD3(__position.base(),
557 __old_finish - __n, __old_finish);
558 std::fill(__position.base(), __position.base() + __n,
563 _GLIBCXX_ASAN_ANNOTATE_GROW(__n);
564 this->_M_impl._M_finish =
565 std::__uninitialized_fill_n_a(__old_finish,
568 _M_get_Tp_allocator());
569 _GLIBCXX_ASAN_ANNOTATE_GREW(__n - __elems_after);
570 std::__uninitialized_move_a(__position.base(), __old_finish,
571 this->_M_impl._M_finish,
572 _M_get_Tp_allocator());
573 this->_M_impl._M_finish += __elems_after;
574 _GLIBCXX_ASAN_ANNOTATE_GREW(__elems_after);
575 std::fill(__position.base(), __old_finish, __x_copy);
582 pointer __old_start = this->_M_impl._M_start;
583 pointer __old_finish = this->_M_impl._M_finish;
584 const pointer __pos = __position.base();
587 _M_check_len(__n,
"vector::_M_fill_insert");
588 const size_type __elems_before = __pos - __old_start;
589 pointer __new_start(this->_M_allocate(__len));
590 pointer __new_finish(__new_start);
594 std::__uninitialized_fill_n_a(__new_start + __elems_before,
596 _M_get_Tp_allocator());
597 __new_finish = pointer();
600 = std::__uninitialized_move_if_noexcept_a
601 (__old_start, __pos, __new_start, _M_get_Tp_allocator());
606 = std::__uninitialized_move_if_noexcept_a
607 (__pos, __old_finish, __new_finish, _M_get_Tp_allocator());
613 __new_start + __elems_before + __n,
614 _M_get_Tp_allocator());
617 _M_get_Tp_allocator());
618 _M_deallocate(__new_start, __len);
619 __throw_exception_again;
621 std::_Destroy(__old_start, __old_finish, _M_get_Tp_allocator());
622 _GLIBCXX_ASAN_ANNOTATE_REINIT;
623 _M_deallocate(__old_start,
624 this->_M_impl._M_end_of_storage - __old_start);
625 this->_M_impl._M_start = __new_start;
626 this->_M_impl._M_finish = __new_finish;
627 this->_M_impl._M_end_of_storage = __new_start + __len;
632 template<
typename _Tp,
typename _Alloc>
638 if (
size_type(this->_M_impl._M_end_of_storage
639 - this->_M_impl._M_finish) >= __n)
641 _GLIBCXX_ASAN_ANNOTATE_GROW(__n);
642 this->_M_impl._M_finish =
643 std::__uninitialized_fill_n_a(this->_M_impl._M_finish, __n, __x,
644 _M_get_Tp_allocator());
645 _GLIBCXX_ASAN_ANNOTATE_GREW(__n);
651 pointer __old_start = this->_M_impl._M_start;
652 pointer __old_finish = this->_M_impl._M_finish;
653 const size_type __old_size = __old_finish - __old_start;
656 _M_check_len(__n,
"vector::_M_fill_append");
657 pointer __new_start(this->_M_allocate(__len));
658 pointer __new_finish(__new_start + __old_size);
662 __new_finish = std::__uninitialized_fill_n_a(
663 __new_finish, __n, __x,
664 _M_get_Tp_allocator());
665 std::__uninitialized_move_if_noexcept_a(
666 __old_start, __old_finish, __new_start,
667 _M_get_Tp_allocator());
672 _M_get_Tp_allocator());
673 _M_deallocate(__new_start, __len);
674 __throw_exception_again;
676 std::_Destroy(__old_start, __old_finish, _M_get_Tp_allocator());
677 _GLIBCXX_ASAN_ANNOTATE_REINIT;
678 _M_deallocate(__old_start,
679 this->_M_impl._M_end_of_storage - __old_start);
680 this->_M_impl._M_start = __new_start;
681 this->_M_impl._M_finish = __new_finish;
682 this->_M_impl._M_end_of_storage = __new_start + __len;
686#if __cplusplus >= 201103L
687 template<
typename _Tp,
typename _Alloc>
697 - this->_M_impl._M_finish);
699 if (__size > max_size() || __navail > max_size() - __size)
700 __builtin_unreachable();
704 _GLIBCXX_ASAN_ANNOTATE_GROW(__n);
705 this->_M_impl._M_finish =
706 std::__uninitialized_default_n_a(this->_M_impl._M_finish,
707 __n, _M_get_Tp_allocator());
708 _GLIBCXX_ASAN_ANNOTATE_GREW(__n);
714 pointer __old_start = this->_M_impl._M_start;
715 pointer __old_finish = this->_M_impl._M_finish;
718 _M_check_len(__n,
"vector::_M_default_append");
719 pointer __new_start(this->_M_allocate(__len));
720 if _GLIBCXX17_CONSTEXPR (_S_use_relocate())
724 std::__uninitialized_default_n_a(__new_start + __size,
725 __n, _M_get_Tp_allocator());
729 _M_deallocate(__new_start, __len);
730 __throw_exception_again;
732 _S_relocate(__old_start, __old_finish,
733 __new_start, _M_get_Tp_allocator());
737 pointer __destroy_from = pointer();
740 std::__uninitialized_default_n_a(__new_start + __size,
741 __n, _M_get_Tp_allocator());
742 __destroy_from = __new_start + __size;
743 std::__uninitialized_move_if_noexcept_a(
744 __old_start, __old_finish,
745 __new_start, _M_get_Tp_allocator());
751 _M_get_Tp_allocator());
752 _M_deallocate(__new_start, __len);
753 __throw_exception_again;
756 _M_get_Tp_allocator());
758 _GLIBCXX_ASAN_ANNOTATE_REINIT;
759 _M_deallocate(__old_start,
760 this->_M_impl._M_end_of_storage - __old_start);
761 this->_M_impl._M_start = __new_start;
762 this->_M_impl._M_finish = __new_start + __size + __n;
763 this->_M_impl._M_end_of_storage = __new_start + __len;
768 template<
typename _Tp,
typename _Alloc>
774 if (capacity() ==
size())
776 _GLIBCXX_ASAN_ANNOTATE_REINIT;
777 return std::__shrink_to_fit_aux<vector>::_S_do_it(*
this);
781 template<
typename _Tp,
typename _Alloc>
782 template<
typename _InputIterator>
787 _InputIterator __last, std::input_iterator_tag)
791 for (; __first != __last; ++__first)
792 insert(
end(), *__first);
794 else if (__first != __last)
796 vector __tmp(__first, __last, _M_get_Tp_allocator());
798 _GLIBCXX_MAKE_MOVE_ITERATOR(__tmp.begin()),
799 _GLIBCXX_MAKE_MOVE_ITERATOR(__tmp.end()));
803 template<
typename _Tp,
typename _Alloc>
804 template<
typename _ForwardIterator>
809 _ForwardIterator __last, std::forward_iterator_tag)
811 if (__first != __last)
814 if (
size_type(this->_M_impl._M_end_of_storage
815 - this->_M_impl._M_finish) >= __n)
818 pointer __old_finish(this->_M_impl._M_finish);
819 if (__elems_after > __n)
821 _GLIBCXX_ASAN_ANNOTATE_GROW(__n);
822 std::__uninitialized_move_a(this->_M_impl._M_finish - __n,
823 this->_M_impl._M_finish,
824 this->_M_impl._M_finish,
825 _M_get_Tp_allocator());
826 this->_M_impl._M_finish += __n;
827 _GLIBCXX_ASAN_ANNOTATE_GREW(__n);
828 _GLIBCXX_MOVE_BACKWARD3(__position.base(),
829 __old_finish - __n, __old_finish);
830 std::copy(__first, __last, __position);
834 _ForwardIterator __mid = __first;
836 _GLIBCXX_ASAN_ANNOTATE_GROW(__n);
837 std::__uninitialized_copy_a(__mid, __last,
838 this->_M_impl._M_finish,
839 _M_get_Tp_allocator());
840 this->_M_impl._M_finish += __n - __elems_after;
841 _GLIBCXX_ASAN_ANNOTATE_GREW(__n - __elems_after);
842 std::__uninitialized_move_a(__position.base(),
844 this->_M_impl._M_finish,
845 _M_get_Tp_allocator());
846 this->_M_impl._M_finish += __elems_after;
847 _GLIBCXX_ASAN_ANNOTATE_GREW(__elems_after);
848 std::copy(__first, __mid, __position);
856 pointer __old_start = this->_M_impl._M_start;
857 pointer __old_finish = this->_M_impl._M_finish;
858 if ((__old_finish - __old_start) < 0)
859 __builtin_unreachable();
862 _M_check_len(__n,
"vector::_M_range_insert");
863 pointer __new_start(this->_M_allocate(__len));
864 pointer __new_finish(__new_start);
868 = std::__uninitialized_move_if_noexcept_a
869 (__old_start, __position.base(),
870 __new_start, _M_get_Tp_allocator());
872 = std::__uninitialized_copy_a(__first, __last,
874 _M_get_Tp_allocator());
876 = std::__uninitialized_move_if_noexcept_a
877 (__position.base(), __old_finish,
878 __new_finish, _M_get_Tp_allocator());
883 _M_get_Tp_allocator());
884 _M_deallocate(__new_start, __len);
885 __throw_exception_again;
888 _M_get_Tp_allocator());
889 _GLIBCXX_ASAN_ANNOTATE_REINIT;
890 _M_deallocate(__old_start,
891 this->_M_impl._M_end_of_storage - __old_start);
892 this->_M_impl._M_start = __new_start;
893 this->_M_impl._M_finish = __new_finish;
894 this->_M_impl._M_end_of_storage = __new_start + __len;
901 template<
typename _Alloc>
909 __builtin_unreachable();
910 _Bit_pointer __q = this->_M_allocate(__n);
912 iterator __finish(_M_copy_aligned(__begin, __end, __start));
913 this->_M_deallocate();
914 this->_M_impl._M_start = __start;
915 this->_M_impl._M_finish = __finish;
916 this->_M_impl._M_end_of_storage = __q + _S_nword(__n);
919 template<
typename _Alloc>
927 if (capacity() -
size() >= __n)
929 std::copy_backward(__position,
end(),
937 _M_check_len(__n,
"vector<bool>::_M_fill_insert");
939 _Bit_pointer __q = this->_M_allocate(__len);
941 iterator __i = _M_copy_aligned(__begin, __position, __start);
943 iterator __finish = std::copy(__position, __end,
945 this->_M_deallocate();
946 this->_M_impl._M_end_of_storage = __q + _S_nword(__len);
947 this->_M_impl._M_start = __start;
948 this->_M_impl._M_finish = __finish;
952 template<
typename _Alloc>
953 template<
typename _ForwardIterator>
958 _ForwardIterator __last, std::forward_iterator_tag)
960 if (__first != __last)
963 if (capacity() -
size() >= __n)
965 std::copy_backward(__position,
end(),
966 this->_M_impl._M_finish
968 std::copy(__first, __last, __position);
974 _M_check_len(__n,
"vector<bool>::_M_insert_range");
976 _Bit_pointer __q = this->_M_allocate(__len);
978 iterator __i = _M_copy_aligned(__begin, __position, __start);
979 __i = std::copy(__first, __last, __i);
980 iterator __finish = std::copy(__position, __end, __i);
981 this->_M_deallocate();
982 this->_M_impl._M_end_of_storage = __q + _S_nword(__len);
983 this->_M_impl._M_start = __start;
984 this->_M_impl._M_finish = __finish;
989 template<
typename _Alloc>
995 if (this->_M_impl._M_finish._M_p != this->_M_impl._M_end_addr())
997 std::copy_backward(__position, this->_M_impl._M_finish,
998 this->_M_impl._M_finish + 1);
1000 ++this->_M_impl._M_finish;
1005 _M_check_len(
size_type(1),
"vector<bool>::_M_insert_aux");
1006 _Bit_pointer __q = this->_M_allocate(__len);
1008 iterator __i = _M_copy_aligned(
begin(), __position, __start);
1010 iterator __finish = std::copy(__position,
end(), __i);
1011 this->_M_deallocate();
1012 this->_M_impl._M_end_of_storage = __q + _S_nword(__len);
1013 this->_M_impl._M_start = __start;
1014 this->_M_impl._M_finish = __finish;
1018 template<
typename _Alloc>
1019 _GLIBCXX20_CONSTEXPR
1020 typename vector<bool, _Alloc>::iterator
1024 if (__position + 1 !=
end())
1025 std::copy(__position + 1,
end(), __position);
1026 --this->_M_impl._M_finish;
1030 template<
typename _Alloc>
1031 _GLIBCXX20_CONSTEXPR
1032 typename vector<bool, _Alloc>::iterator
1036 if (__first != __last)
1037 _M_erase_at_end(std::copy(__last,
end(), __first));
1041#if __cplusplus >= 201103L
1042 template<
typename _Alloc>
1043 _GLIBCXX20_CONSTEXPR
1048 if (capacity() -
size() <
int(_S_word_bit))
1056 this->_M_deallocate();
1057 this->_M_impl._M_reset();
1066_GLIBCXX_END_NAMESPACE_CONTAINER
1067_GLIBCXX_END_NAMESPACE_VERSION
1070#if __cplusplus >= 201103L
1072namespace std _GLIBCXX_VISIBILITY(default)
1074_GLIBCXX_BEGIN_NAMESPACE_VERSION
1076 template<
typename _Alloc>
1079 operator()(
const _GLIBCXX_STD_C::vector<bool, _Alloc>& __b)
const noexcept
1082 const size_t __words = __b.size() / _S_word_bit;
1085 const size_t __clength = __words *
sizeof(_Bit_type);
1086 __hash = std::_Hash_impl::hash(__b._M_impl._M_start._M_p, __clength);
1089 const size_t __extrabits = __b.size() % _S_word_bit;
1092 _Bit_type __hiword = *__b._M_impl._M_finish._M_p;
1093 __hiword &= ~((~static_cast<_Bit_type>(0)) << __extrabits);
1095 const size_t __clength
1096 = (__extrabits + __CHAR_BIT__ - 1) / __CHAR_BIT__;
1098 __hash = std::_Hash_impl::hash(&__hiword, __clength, __hash);
1100 __hash = std::_Hash_impl::hash(&__hiword, __clength);
1106_GLIBCXX_END_NAMESPACE_VERSION
1111#undef _GLIBCXX_ASAN_ANNOTATE_REINIT
1112#undef _GLIBCXX_ASAN_ANNOTATE_GROW
1113#undef _GLIBCXX_ASAN_ANNOTATE_GREW
1114#undef _GLIBCXX_ASAN_ANNOTATE_SHRINK
constexpr std::remove_reference< _Tp >::type && move(_Tp &&__t) noexcept
Convert a value to an rvalue.
constexpr _Tp * __addressof(_Tp &__r) noexcept
Same as C++11 std::addressof.
constexpr _Tp && forward(typename std::remove_reference< _Tp >::type &__t) noexcept
Forward an lvalue.
_Tp * end(valarray< _Tp > &__va) noexcept
Return an iterator pointing to one past the last element of the valarray.
_Tp * begin(valarray< _Tp > &__va) noexcept
Return an iterator pointing to the first element of the valarray.
constexpr iterator_traits< _Iter >::iterator_category __iterator_category(const _Iter &)
ISO C++ entities toplevel namespace is std.
constexpr iterator_traits< _InputIterator >::difference_type distance(_InputIterator __first, _InputIterator __last)
A generalization of pointer arithmetic.
constexpr auto cend(const _Container &__cont) noexcept(noexcept(std::end(__cont))) -> decltype(std::end(__cont))
Return an iterator pointing to one past the last element of the const container.
constexpr auto size(const _Container &__cont) noexcept(noexcept(__cont.size())) -> decltype(__cont.size())
Return the size of a container.
constexpr void advance(_InputIterator &__i, _Distance __n)
A generalization of pointer arithmetic.
constexpr auto cbegin(const _Container &__cont) noexcept(noexcept(std::begin(__cont))) -> decltype(std::begin(__cont))
Return an iterator pointing to the first element of the const container.
constexpr void _Destroy(_ForwardIterator __first, _ForwardIterator __last)
Primary class template hash.
A standard container which offers fixed time access to individual elements in any order.
constexpr iterator insert(const_iterator __position, const value_type &__x)
Inserts given value into vector before specified iterator.
constexpr iterator end() noexcept
vector()=default
Creates a vector with no elements.
constexpr iterator begin() noexcept
constexpr size_type capacity() const noexcept
constexpr void reserve(size_type __n)
Attempt to preallocate enough memory for specified number of elements.
constexpr pointer _M_allocate_and_copy(size_type __n, _ForwardIterator __first, _ForwardIterator __last)
constexpr void clear() noexcept
constexpr size_type size() const noexcept
constexpr vector & operator=(const vector &__x)
Vector assignment operator.
constexpr size_type max_size() const noexcept