1 // vector<bool> specialization -*- C++ -*-
3 // Copyright (C) 2001-2013 Free Software Foundation, Inc.
5 // This file is part of the GNU ISO C++ Library. This library is free
6 // software; you can redistribute it and/or modify it under the
7 // terms of the GNU General Public License as published by the
8 // Free Software Foundation; either version 3, or (at your option)
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
16 // Under Section 7 of GPL version 3, you are granted additional
17 // permissions described in the GCC Runtime Library Exception, version
18 // 3.1, as published by the Free Software Foundation.
20 // You should have received a copy of the GNU General Public License and
21 // a copy of the GCC Runtime Library Exception along with this program;
22 // see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
23 // <http://www.gnu.org/licenses/>.
28 * Hewlett-Packard Company
30 * Permission to use, copy, modify, distribute and sell this software
31 * and its documentation for any purpose is hereby granted without fee,
32 * provided that the above copyright notice appear in all copies and
33 * that both that copyright notice and this permission notice appear
34 * in supporting documentation. Hewlett-Packard Company makes no
35 * representations about the suitability of this software for any
36 * purpose. It is provided "as is" without express or implied warranty.
39 * Copyright (c) 1996-1999
40 * Silicon Graphics Computer Systems, Inc.
42 * Permission to use, copy, modify, distribute and sell this software
43 * and its documentation for any purpose is hereby granted without fee,
44 * provided that the above copyright notice appear in all copies and
45 * that both that copyright notice and this permission notice appear
46 * in supporting documentation. Silicon Graphics makes no
47 * representations about the suitability of this software for any
48 * purpose. It is provided "as is" without express or implied warranty.
51 /** @file bits/stl_bvector.h
52 * This is an internal header file, included by other library headers.
53 * Do not attempt to use it directly. @headername{vector}
56 #ifndef _STL_BVECTOR_H
57 #define _STL_BVECTOR_H 1
59 #if __cplusplus >= 201103L
60 #include <initializer_list>
63 namespace std
_GLIBCXX_VISIBILITY(default)
65 _GLIBCXX_BEGIN_NAMESPACE_CONTAINER
67 typedef unsigned long _Bit_type
;
68 enum { _S_word_bit
= int(__CHAR_BIT__
* sizeof(_Bit_type
)) };
75 _Bit_reference(_Bit_type
* __x
, _Bit_type __y
)
76 : _M_p(__x
), _M_mask(__y
) { }
78 _Bit_reference() _GLIBCXX_NOEXCEPT
: _M_p(0), _M_mask(0) { }
80 operator bool() const _GLIBCXX_NOEXCEPT
81 { return !!(*_M_p
& _M_mask
); }
84 operator=(bool __x
) _GLIBCXX_NOEXCEPT
94 operator=(const _Bit_reference
& __x
) _GLIBCXX_NOEXCEPT
95 { return *this = bool(__x
); }
98 operator==(const _Bit_reference
& __x
) const
99 { return bool(*this) == bool(__x
); }
102 operator<(const _Bit_reference
& __x
) const
103 { return !bool(*this) && bool(__x
); }
106 flip() _GLIBCXX_NOEXCEPT
107 { *_M_p
^= _M_mask
; }
110 #if __cplusplus >= 201103L
112 swap(_Bit_reference __x
, _Bit_reference __y
) noexcept
120 swap(_Bit_reference __x
, bool& __y
) noexcept
128 swap(bool& __x
, _Bit_reference __y
) noexcept
136 struct _Bit_iterator_base
137 : public std::iterator
<std::random_access_iterator_tag
, bool>
140 unsigned int _M_offset
;
142 _Bit_iterator_base(_Bit_type
* __x
, unsigned int __y
)
143 : _M_p(__x
), _M_offset(__y
) { }
148 if (_M_offset
++ == int(_S_word_bit
) - 1)
158 if (_M_offset
-- == 0)
160 _M_offset
= int(_S_word_bit
) - 1;
166 _M_incr(ptrdiff_t __i
)
168 difference_type __n
= __i
+ _M_offset
;
169 _M_p
+= __n
/ int(_S_word_bit
);
170 __n
= __n
% int(_S_word_bit
);
173 __n
+= int(_S_word_bit
);
176 _M_offset
= static_cast<unsigned int>(__n
);
180 operator==(const _Bit_iterator_base
& __i
) const
181 { return _M_p
== __i
._M_p
&& _M_offset
== __i
._M_offset
; }
184 operator<(const _Bit_iterator_base
& __i
) const
186 return _M_p
< __i
._M_p
187 || (_M_p
== __i
._M_p
&& _M_offset
< __i
._M_offset
);
191 operator!=(const _Bit_iterator_base
& __i
) const
192 { return !(*this == __i
); }
195 operator>(const _Bit_iterator_base
& __i
) const
196 { return __i
< *this; }
199 operator<=(const _Bit_iterator_base
& __i
) const
200 { return !(__i
< *this); }
203 operator>=(const _Bit_iterator_base
& __i
) const
204 { return !(*this < __i
); }
208 operator-(const _Bit_iterator_base
& __x
, const _Bit_iterator_base
& __y
)
210 return (int(_S_word_bit
) * (__x
._M_p
- __y
._M_p
)
211 + __x
._M_offset
- __y
._M_offset
);
214 struct _Bit_iterator
: public _Bit_iterator_base
216 typedef _Bit_reference reference
;
217 typedef _Bit_reference
* pointer
;
218 typedef _Bit_iterator iterator
;
220 _Bit_iterator() : _Bit_iterator_base(0, 0) { }
222 _Bit_iterator(_Bit_type
* __x
, unsigned int __y
)
223 : _Bit_iterator_base(__x
, __y
) { }
227 { return reference(_M_p
, 1UL << _M_offset
); }
239 iterator __tmp
= *this;
254 iterator __tmp
= *this;
260 operator+=(difference_type __i
)
267 operator-=(difference_type __i
)
274 operator+(difference_type __i
) const
276 iterator __tmp
= *this;
281 operator-(difference_type __i
) const
283 iterator __tmp
= *this;
288 operator[](difference_type __i
) const
289 { return *(*this + __i
); }
293 operator+(ptrdiff_t __n
, const _Bit_iterator
& __x
)
294 { return __x
+ __n
; }
296 struct _Bit_const_iterator
: public _Bit_iterator_base
298 typedef bool reference
;
299 typedef bool const_reference
;
300 typedef const bool* pointer
;
301 typedef _Bit_const_iterator const_iterator
;
303 _Bit_const_iterator() : _Bit_iterator_base(0, 0) { }
305 _Bit_const_iterator(_Bit_type
* __x
, unsigned int __y
)
306 : _Bit_iterator_base(__x
, __y
) { }
308 _Bit_const_iterator(const _Bit_iterator
& __x
)
309 : _Bit_iterator_base(__x
._M_p
, __x
._M_offset
) { }
312 _M_const_cast() const
313 { return _Bit_iterator(_M_p
, _M_offset
); }
317 { return _Bit_reference(_M_p
, 1UL << _M_offset
); }
329 const_iterator __tmp
= *this;
344 const_iterator __tmp
= *this;
350 operator+=(difference_type __i
)
357 operator-=(difference_type __i
)
364 operator+(difference_type __i
) const
366 const_iterator __tmp
= *this;
371 operator-(difference_type __i
) const
373 const_iterator __tmp
= *this;
378 operator[](difference_type __i
) const
379 { return *(*this + __i
); }
382 inline _Bit_const_iterator
383 operator+(ptrdiff_t __n
, const _Bit_const_iterator
& __x
)
384 { return __x
+ __n
; }
387 __fill_bvector(_Bit_iterator __first
, _Bit_iterator __last
, bool __x
)
389 for (; __first
!= __last
; ++__first
)
394 fill(_Bit_iterator __first
, _Bit_iterator __last
, const bool& __x
)
396 if (__first
._M_p
!= __last
._M_p
)
398 std::fill(__first
._M_p
+ 1, __last
._M_p
, __x
? ~0 : 0);
399 __fill_bvector(__first
, _Bit_iterator(__first
._M_p
+ 1, 0), __x
);
400 __fill_bvector(_Bit_iterator(__last
._M_p
, 0), __last
, __x
);
403 __fill_bvector(__first
, __last
, __x
);
406 template<typename _Alloc
>
409 typedef typename
_Alloc::template rebind
<_Bit_type
>::other
413 : public _Bit_alloc_type
415 _Bit_iterator _M_start
;
416 _Bit_iterator _M_finish
;
417 _Bit_type
* _M_end_of_storage
;
420 : _Bit_alloc_type(), _M_start(), _M_finish(), _M_end_of_storage(0)
423 _Bvector_impl(const _Bit_alloc_type
& __a
)
424 : _Bit_alloc_type(__a
), _M_start(), _M_finish(), _M_end_of_storage(0)
427 #if __cplusplus >= 201103L
428 _Bvector_impl(_Bit_alloc_type
&& __a
)
429 : _Bit_alloc_type(std::move(__a
)), _M_start(), _M_finish(),
436 typedef _Alloc allocator_type
;
439 _M_get_Bit_allocator() _GLIBCXX_NOEXCEPT
440 { return *static_cast<_Bit_alloc_type
*>(&this->_M_impl
); }
442 const _Bit_alloc_type
&
443 _M_get_Bit_allocator() const _GLIBCXX_NOEXCEPT
444 { return *static_cast<const _Bit_alloc_type
*>(&this->_M_impl
); }
447 get_allocator() const _GLIBCXX_NOEXCEPT
448 { return allocator_type(_M_get_Bit_allocator()); }
453 _Bvector_base(const allocator_type
& __a
)
456 #if __cplusplus >= 201103L
457 _Bvector_base(_Bvector_base
&& __x
) noexcept
458 : _M_impl(std::move(__x
._M_get_Bit_allocator()))
460 this->_M_impl
._M_start
= __x
._M_impl
._M_start
;
461 this->_M_impl
._M_finish
= __x
._M_impl
._M_finish
;
462 this->_M_impl
._M_end_of_storage
= __x
._M_impl
._M_end_of_storage
;
463 __x
._M_impl
._M_start
= _Bit_iterator();
464 __x
._M_impl
._M_finish
= _Bit_iterator();
465 __x
._M_impl
._M_end_of_storage
= 0;
470 { this->_M_deallocate(); }
473 _Bvector_impl _M_impl
;
476 _M_allocate(size_t __n
)
477 { return _M_impl
.allocate(_S_nword(__n
)); }
482 if (_M_impl
._M_start
._M_p
)
483 _M_impl
.deallocate(_M_impl
._M_start
._M_p
,
484 _M_impl
._M_end_of_storage
- _M_impl
._M_start
._M_p
);
489 { return (__n
+ int(_S_word_bit
) - 1) / int(_S_word_bit
); }
492 _GLIBCXX_END_NAMESPACE_CONTAINER
495 // Declare a partial specialization of vector<T, Alloc>.
496 #include <bits/stl_vector.h>
498 namespace std
_GLIBCXX_VISIBILITY(default)
500 _GLIBCXX_BEGIN_NAMESPACE_CONTAINER
503 * @brief A specialization of vector for booleans which offers fixed time
504 * access to individual elements in any order.
508 * @tparam _Alloc Allocator type.
510 * Note that vector<bool> does not actually meet the requirements for being
511 * a container. This is because the reference and pointer types are not
512 * really references and pointers to bool. See DR96 for details. @see
513 * vector for function documentation.
515 * In some terminology a %vector can be described as a dynamic
516 * C-style array, it offers fast and efficient access to individual
517 * elements in any order and saves the user from worrying about
518 * memory and size allocation. Subscripting ( @c [] ) access is
519 * also provided as with C-style arrays.
521 template<typename _Alloc
>
522 class vector
<bool, _Alloc
> : protected _Bvector_base
<_Alloc
>
524 typedef _Bvector_base
<_Alloc
> _Base
;
526 #if __cplusplus >= 201103L
527 template<typename
> friend class hash
;
531 typedef bool value_type
;
532 typedef size_t size_type
;
533 typedef ptrdiff_t difference_type
;
534 typedef _Bit_reference reference
;
535 typedef bool const_reference
;
536 typedef _Bit_reference
* pointer
;
537 typedef const bool* const_pointer
;
538 typedef _Bit_iterator iterator
;
539 typedef _Bit_const_iterator const_iterator
;
540 typedef std::reverse_iterator
<const_iterator
> const_reverse_iterator
;
541 typedef std::reverse_iterator
<iterator
> reverse_iterator
;
542 typedef _Alloc allocator_type
;
544 allocator_type
get_allocator() const
545 { return _Base::get_allocator(); }
548 using _Base::_M_allocate
;
549 using _Base::_M_deallocate
;
550 using _Base::_S_nword
;
551 using _Base::_M_get_Bit_allocator
;
558 vector(const allocator_type
& __a
)
561 #if __cplusplus >= 201103L
563 vector(size_type __n
, const allocator_type
& __a
= allocator_type())
564 : vector(__n
, false, __a
)
567 vector(size_type __n
, const bool& __value
,
568 const allocator_type
& __a
= allocator_type())
572 std::fill(this->_M_impl
._M_start
._M_p
, this->_M_impl
._M_end_of_storage
,
577 vector(size_type __n
, const bool& __value
= bool(),
578 const allocator_type
& __a
= allocator_type())
582 std::fill(this->_M_impl
._M_start
._M_p
, this->_M_impl
._M_end_of_storage
,
587 vector(const vector
& __x
)
588 : _Base(__x
._M_get_Bit_allocator())
590 _M_initialize(__x
.size());
591 _M_copy_aligned(__x
.begin(), __x
.end(), this->_M_impl
._M_start
);
594 #if __cplusplus >= 201103L
595 vector(vector
&& __x
) noexcept
596 : _Base(std::move(__x
)) { }
598 vector(initializer_list
<bool> __l
,
599 const allocator_type
& __a
= allocator_type())
602 _M_initialize_range(__l
.begin(), __l
.end(),
603 random_access_iterator_tag());
607 #if __cplusplus >= 201103L
608 template<typename _InputIterator
,
609 typename
= std::_RequireInputIter
<_InputIterator
>>
610 vector(_InputIterator __first
, _InputIterator __last
,
611 const allocator_type
& __a
= allocator_type())
613 { _M_initialize_dispatch(__first
, __last
, __false_type()); }
615 template<typename _InputIterator
>
616 vector(_InputIterator __first
, _InputIterator __last
,
617 const allocator_type
& __a
= allocator_type())
620 typedef typename
std::__is_integer
<_InputIterator
>::__type _Integral
;
621 _M_initialize_dispatch(__first
, __last
, _Integral());
625 ~vector() _GLIBCXX_NOEXCEPT
{ }
628 operator=(const vector
& __x
)
632 if (__x
.size() > capacity())
634 this->_M_deallocate();
635 _M_initialize(__x
.size());
637 this->_M_impl
._M_finish
= _M_copy_aligned(__x
.begin(), __x
.end(),
642 #if __cplusplus >= 201103L
644 operator=(vector
&& __x
)
654 operator=(initializer_list
<bool> __l
)
656 this->assign (__l
.begin(), __l
.end());
661 // assign(), a generalized assignment member function. Two
662 // versions: one that takes a count, and one that takes a range.
663 // The range version is a member template, so we dispatch on whether
664 // or not the type is an integer.
666 assign(size_type __n
, const bool& __x
)
667 { _M_fill_assign(__n
, __x
); }
669 #if __cplusplus >= 201103L
670 template<typename _InputIterator
,
671 typename
= std::_RequireInputIter
<_InputIterator
>>
673 assign(_InputIterator __first
, _InputIterator __last
)
674 { _M_assign_dispatch(__first
, __last
, __false_type()); }
676 template<typename _InputIterator
>
678 assign(_InputIterator __first
, _InputIterator __last
)
680 typedef typename
std::__is_integer
<_InputIterator
>::__type _Integral
;
681 _M_assign_dispatch(__first
, __last
, _Integral());
685 #if __cplusplus >= 201103L
687 assign(initializer_list
<bool> __l
)
688 { this->assign(__l
.begin(), __l
.end()); }
692 begin() _GLIBCXX_NOEXCEPT
693 { return this->_M_impl
._M_start
; }
696 begin() const _GLIBCXX_NOEXCEPT
697 { return this->_M_impl
._M_start
; }
700 end() _GLIBCXX_NOEXCEPT
701 { return this->_M_impl
._M_finish
; }
704 end() const _GLIBCXX_NOEXCEPT
705 { return this->_M_impl
._M_finish
; }
708 rbegin() _GLIBCXX_NOEXCEPT
709 { return reverse_iterator(end()); }
711 const_reverse_iterator
712 rbegin() const _GLIBCXX_NOEXCEPT
713 { return const_reverse_iterator(end()); }
716 rend() _GLIBCXX_NOEXCEPT
717 { return reverse_iterator(begin()); }
719 const_reverse_iterator
720 rend() const _GLIBCXX_NOEXCEPT
721 { return const_reverse_iterator(begin()); }
723 #if __cplusplus >= 201103L
725 cbegin() const noexcept
726 { return this->_M_impl
._M_start
; }
729 cend() const noexcept
730 { return this->_M_impl
._M_finish
; }
732 const_reverse_iterator
733 crbegin() const noexcept
734 { return const_reverse_iterator(end()); }
736 const_reverse_iterator
737 crend() const noexcept
738 { return const_reverse_iterator(begin()); }
742 size() const _GLIBCXX_NOEXCEPT
743 { return size_type(end() - begin()); }
746 max_size() const _GLIBCXX_NOEXCEPT
748 const size_type __isize
=
749 __gnu_cxx::__numeric_traits
<difference_type
>::__max
750 - int(_S_word_bit
) + 1;
751 const size_type __asize
= _M_get_Bit_allocator().max_size();
752 return (__asize
<= __isize
/ int(_S_word_bit
)
753 ? __asize
* int(_S_word_bit
) : __isize
);
757 capacity() const _GLIBCXX_NOEXCEPT
758 { return size_type(const_iterator(this->_M_impl
._M_end_of_storage
, 0)
762 empty() const _GLIBCXX_NOEXCEPT
763 { return begin() == end(); }
766 operator[](size_type __n
)
768 return *iterator(this->_M_impl
._M_start
._M_p
769 + __n
/ int(_S_word_bit
), __n
% int(_S_word_bit
));
773 operator[](size_type __n
) const
775 return *const_iterator(this->_M_impl
._M_start
._M_p
776 + __n
/ int(_S_word_bit
), __n
% int(_S_word_bit
));
781 _M_range_check(size_type __n
) const
783 if (__n
>= this->size())
784 __throw_out_of_range(__N("vector<bool>::_M_range_check"));
790 { _M_range_check(__n
); return (*this)[__n
]; }
793 at(size_type __n
) const
794 { _M_range_check(__n
); return (*this)[__n
]; }
797 reserve(size_type __n
)
799 if (__n
> max_size())
800 __throw_length_error(__N("vector::reserve"));
801 if (capacity() < __n
)
815 { return *(end() - 1); }
819 { return *(end() - 1); }
821 // _GLIBCXX_RESOLVE_LIB_DEFECTS
822 // DR 464. Suggestion for new member functions in standard containers.
823 // N.B. DR 464 says nothing about vector<bool> but we need something
824 // here due to the way we are implementing DR 464 in the debug-mode
827 data() _GLIBCXX_NOEXCEPT
{ }
832 if (this->_M_impl
._M_finish
._M_p
!= this->_M_impl
._M_end_of_storage
)
833 *this->_M_impl
._M_finish
++ = __x
;
835 _M_insert_aux(end(), __x
);
841 std::swap(this->_M_impl
._M_start
, __x
._M_impl
._M_start
);
842 std::swap(this->_M_impl
._M_finish
, __x
._M_impl
._M_finish
);
843 std::swap(this->_M_impl
._M_end_of_storage
,
844 __x
._M_impl
._M_end_of_storage
);
846 // _GLIBCXX_RESOLVE_LIB_DEFECTS
847 // 431. Swapping containers with unequal allocators.
848 std::__alloc_swap
<typename
_Base::_Bit_alloc_type
>::
849 _S_do_it(_M_get_Bit_allocator(), __x
._M_get_Bit_allocator());
852 // [23.2.5]/1, third-to-last entry in synopsis listing
854 swap(reference __x
, reference __y
) _GLIBCXX_NOEXCEPT
862 insert(iterator __position
, const bool& __x
= bool())
864 const difference_type __n
= __position
- begin();
865 if (this->_M_impl
._M_finish
._M_p
!= this->_M_impl
._M_end_of_storage
866 && __position
== end())
867 *this->_M_impl
._M_finish
++ = __x
;
869 _M_insert_aux(__position
, __x
);
870 return begin() + __n
;
873 #if __cplusplus >= 201103L
874 template<typename _InputIterator
,
875 typename
= std::_RequireInputIter
<_InputIterator
>>
877 insert(iterator __position
,
878 _InputIterator __first
, _InputIterator __last
)
879 { _M_insert_dispatch(__position
, __first
, __last
, __false_type()); }
881 template<typename _InputIterator
>
883 insert(iterator __position
,
884 _InputIterator __first
, _InputIterator __last
)
886 typedef typename
std::__is_integer
<_InputIterator
>::__type _Integral
;
887 _M_insert_dispatch(__position
, __first
, __last
, _Integral());
892 insert(iterator __position
, size_type __n
, const bool& __x
)
893 { _M_fill_insert(__position
, __n
, __x
); }
895 #if __cplusplus >= 201103L
896 void insert(iterator __p
, initializer_list
<bool> __l
)
897 { this->insert(__p
, __l
.begin(), __l
.end()); }
902 { --this->_M_impl
._M_finish
; }
905 #if __cplusplus >= 201103L
906 erase(const_iterator __position
)
907 { return _M_erase(__position
._M_const_cast()); }
909 erase(iterator __position
)
910 { return _M_erase(__position
); }
914 #if __cplusplus >= 201103L
915 erase(const_iterator __first
, const_iterator __last
)
916 { return _M_erase(__first
._M_const_cast(), __last
._M_const_cast()); }
918 erase(iterator __first
, iterator __last
)
919 { return _M_erase(__first
, __last
); }
923 resize(size_type __new_size
, bool __x
= bool())
925 if (__new_size
< size())
926 _M_erase_at_end(begin() + difference_type(__new_size
));
928 insert(end(), __new_size
- size(), __x
);
931 #if __cplusplus >= 201103L
934 { _M_shrink_to_fit(); }
938 flip() _GLIBCXX_NOEXCEPT
940 for (_Bit_type
* __p
= this->_M_impl
._M_start
._M_p
;
941 __p
!= this->_M_impl
._M_end_of_storage
; ++__p
)
946 clear() _GLIBCXX_NOEXCEPT
947 { _M_erase_at_end(begin()); }
951 // Precondition: __first._M_offset == 0 && __result._M_offset == 0.
953 _M_copy_aligned(const_iterator __first
, const_iterator __last
,
956 _Bit_type
* __q
= std::copy(__first
._M_p
, __last
._M_p
, __result
._M_p
);
957 return std::copy(const_iterator(__last
._M_p
, 0), __last
,
962 _M_initialize(size_type __n
)
964 _Bit_type
* __q
= this->_M_allocate(__n
);
965 this->_M_impl
._M_end_of_storage
= __q
+ _S_nword(__n
);
966 this->_M_impl
._M_start
= iterator(__q
, 0);
967 this->_M_impl
._M_finish
= this->_M_impl
._M_start
+ difference_type(__n
);
971 _M_reallocate(size_type __n
);
973 #if __cplusplus >= 201103L
978 // Check whether it's an integral type. If so, it's not an iterator.
980 // _GLIBCXX_RESOLVE_LIB_DEFECTS
981 // 438. Ambiguity in the "do the right thing" clause
982 template<typename _Integer
>
984 _M_initialize_dispatch(_Integer __n
, _Integer __x
, __true_type
)
986 _M_initialize(static_cast<size_type
>(__n
));
987 std::fill(this->_M_impl
._M_start
._M_p
,
988 this->_M_impl
._M_end_of_storage
, __x
? ~0 : 0);
991 template<typename _InputIterator
>
993 _M_initialize_dispatch(_InputIterator __first
, _InputIterator __last
,
995 { _M_initialize_range(__first
, __last
,
996 std::__iterator_category(__first
)); }
998 template<typename _InputIterator
>
1000 _M_initialize_range(_InputIterator __first
, _InputIterator __last
,
1001 std::input_iterator_tag
)
1003 for (; __first
!= __last
; ++__first
)
1004 push_back(*__first
);
1007 template<typename _ForwardIterator
>
1009 _M_initialize_range(_ForwardIterator __first
, _ForwardIterator __last
,
1010 std::forward_iterator_tag
)
1012 const size_type __n
= std::distance(__first
, __last
);
1014 std::copy(__first
, __last
, this->_M_impl
._M_start
);
1017 // _GLIBCXX_RESOLVE_LIB_DEFECTS
1018 // 438. Ambiguity in the "do the right thing" clause
1019 template<typename _Integer
>
1021 _M_assign_dispatch(_Integer __n
, _Integer __val
, __true_type
)
1022 { _M_fill_assign(__n
, __val
); }
1024 template<class _InputIterator
>
1026 _M_assign_dispatch(_InputIterator __first
, _InputIterator __last
,
1028 { _M_assign_aux(__first
, __last
, std::__iterator_category(__first
)); }
1031 _M_fill_assign(size_t __n
, bool __x
)
1035 std::fill(this->_M_impl
._M_start
._M_p
,
1036 this->_M_impl
._M_end_of_storage
, __x
? ~0 : 0);
1037 insert(end(), __n
- size(), __x
);
1041 _M_erase_at_end(begin() + __n
);
1042 std::fill(this->_M_impl
._M_start
._M_p
,
1043 this->_M_impl
._M_end_of_storage
, __x
? ~0 : 0);
1047 template<typename _InputIterator
>
1049 _M_assign_aux(_InputIterator __first
, _InputIterator __last
,
1050 std::input_iterator_tag
)
1052 iterator __cur
= begin();
1053 for (; __first
!= __last
&& __cur
!= end(); ++__cur
, ++__first
)
1055 if (__first
== __last
)
1056 _M_erase_at_end(__cur
);
1058 insert(end(), __first
, __last
);
1061 template<typename _ForwardIterator
>
1063 _M_assign_aux(_ForwardIterator __first
, _ForwardIterator __last
,
1064 std::forward_iterator_tag
)
1066 const size_type __len
= std::distance(__first
, __last
);
1068 _M_erase_at_end(std::copy(__first
, __last
, begin()));
1071 _ForwardIterator __mid
= __first
;
1072 std::advance(__mid
, size());
1073 std::copy(__first
, __mid
, begin());
1074 insert(end(), __mid
, __last
);
1078 // Check whether it's an integral type. If so, it's not an iterator.
1080 // _GLIBCXX_RESOLVE_LIB_DEFECTS
1081 // 438. Ambiguity in the "do the right thing" clause
1082 template<typename _Integer
>
1084 _M_insert_dispatch(iterator __pos
, _Integer __n
, _Integer __x
,
1086 { _M_fill_insert(__pos
, __n
, __x
); }
1088 template<typename _InputIterator
>
1090 _M_insert_dispatch(iterator __pos
,
1091 _InputIterator __first
, _InputIterator __last
,
1093 { _M_insert_range(__pos
, __first
, __last
,
1094 std::__iterator_category(__first
)); }
1097 _M_fill_insert(iterator __position
, size_type __n
, bool __x
);
1099 template<typename _InputIterator
>
1101 _M_insert_range(iterator __pos
, _InputIterator __first
,
1102 _InputIterator __last
, std::input_iterator_tag
)
1104 for (; __first
!= __last
; ++__first
)
1106 __pos
= insert(__pos
, *__first
);
1111 template<typename _ForwardIterator
>
1113 _M_insert_range(iterator __position
, _ForwardIterator __first
,
1114 _ForwardIterator __last
, std::forward_iterator_tag
);
1117 _M_insert_aux(iterator __position
, bool __x
);
1120 _M_check_len(size_type __n
, const char* __s
) const
1122 if (max_size() - size() < __n
)
1123 __throw_length_error(__N(__s
));
1125 const size_type __len
= size() + std::max(size(), __n
);
1126 return (__len
< size() || __len
> max_size()) ? max_size() : __len
;
1130 _M_erase_at_end(iterator __pos
)
1131 { this->_M_impl
._M_finish
= __pos
; }
1134 _M_erase(iterator __pos
);
1137 _M_erase(iterator __first
, iterator __last
);
1140 _GLIBCXX_END_NAMESPACE_CONTAINER
1143 #if __cplusplus >= 201103L
1145 #include <bits/functional_hash.h>
1147 namespace std
_GLIBCXX_VISIBILITY(default)
1149 _GLIBCXX_BEGIN_NAMESPACE_VERSION
1152 /// std::hash specialization for vector<bool>.
1153 template<typename _Alloc
>
1154 struct hash
<_GLIBCXX_STD_C::vector
<bool, _Alloc
>>
1155 : public __hash_base
<size_t, _GLIBCXX_STD_C::vector
<bool, _Alloc
>>
1158 operator()(const _GLIBCXX_STD_C::vector
<bool, _Alloc
>&) const noexcept
;
1161 _GLIBCXX_END_NAMESPACE_VERSION