* include/bits/stl_bvector.h (vector<bool>::vector()): Add noexcept.
[official-gcc.git] / libstdc++-v3 / include / bits / stl_bvector.h
blob71bee213a867a380bb1c3a107a314115f0d7e949
1 // vector<bool> specialization -*- C++ -*-
3 // Copyright (C) 2001-2015 Free Software Foundation, Inc.
4 //
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)
9 // any later version.
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/>.
27 * Copyright (c) 1994
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>
61 #endif
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)) };
70 struct _Bit_reference
72 _Bit_type * _M_p;
73 _Bit_type _M_mask;
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); }
83 _Bit_reference&
84 operator=(bool __x) _GLIBCXX_NOEXCEPT
86 if (__x)
87 *_M_p |= _M_mask;
88 else
89 *_M_p &= ~_M_mask;
90 return *this;
93 _Bit_reference&
94 operator=(const _Bit_reference& __x) _GLIBCXX_NOEXCEPT
95 { return *this = bool(__x); }
97 bool
98 operator==(const _Bit_reference& __x) const
99 { return bool(*this) == bool(__x); }
101 bool
102 operator<(const _Bit_reference& __x) const
103 { return !bool(*this) && bool(__x); }
105 void
106 flip() _GLIBCXX_NOEXCEPT
107 { *_M_p ^= _M_mask; }
110 #if __cplusplus >= 201103L
111 inline void
112 swap(_Bit_reference __x, _Bit_reference __y) noexcept
114 bool __tmp = __x;
115 __x = __y;
116 __y = __tmp;
119 inline void
120 swap(_Bit_reference __x, bool& __y) noexcept
122 bool __tmp = __x;
123 __x = __y;
124 __y = __tmp;
127 inline void
128 swap(bool& __x, _Bit_reference __y) noexcept
130 bool __tmp = __x;
131 __x = __y;
132 __y = __tmp;
134 #endif
136 struct _Bit_iterator_base
137 : public std::iterator<std::random_access_iterator_tag, bool>
139 _Bit_type * _M_p;
140 unsigned int _M_offset;
142 _Bit_iterator_base(_Bit_type * __x, unsigned int __y)
143 : _M_p(__x), _M_offset(__y) { }
145 void
146 _M_bump_up()
148 if (_M_offset++ == int(_S_word_bit) - 1)
150 _M_offset = 0;
151 ++_M_p;
155 void
156 _M_bump_down()
158 if (_M_offset-- == 0)
160 _M_offset = int(_S_word_bit) - 1;
161 --_M_p;
165 void
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);
171 if (__n < 0)
173 __n += int(_S_word_bit);
174 --_M_p;
176 _M_offset = static_cast<unsigned int>(__n);
179 bool
180 operator==(const _Bit_iterator_base& __i) const
181 { return _M_p == __i._M_p && _M_offset == __i._M_offset; }
183 bool
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);
190 bool
191 operator!=(const _Bit_iterator_base& __i) const
192 { return !(*this == __i); }
194 bool
195 operator>(const _Bit_iterator_base& __i) const
196 { return __i < *this; }
198 bool
199 operator<=(const _Bit_iterator_base& __i) const
200 { return !(__i < *this); }
202 bool
203 operator>=(const _Bit_iterator_base& __i) const
204 { return !(*this < __i); }
207 inline ptrdiff_t
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) { }
225 iterator
226 _M_const_cast() const
227 { return *this; }
229 reference
230 operator*() const
231 { return reference(_M_p, 1UL << _M_offset); }
233 iterator&
234 operator++()
236 _M_bump_up();
237 return *this;
240 iterator
241 operator++(int)
243 iterator __tmp = *this;
244 _M_bump_up();
245 return __tmp;
248 iterator&
249 operator--()
251 _M_bump_down();
252 return *this;
255 iterator
256 operator--(int)
258 iterator __tmp = *this;
259 _M_bump_down();
260 return __tmp;
263 iterator&
264 operator+=(difference_type __i)
266 _M_incr(__i);
267 return *this;
270 iterator&
271 operator-=(difference_type __i)
273 *this += -__i;
274 return *this;
277 iterator
278 operator+(difference_type __i) const
280 iterator __tmp = *this;
281 return __tmp += __i;
284 iterator
285 operator-(difference_type __i) const
287 iterator __tmp = *this;
288 return __tmp -= __i;
291 reference
292 operator[](difference_type __i) const
293 { return *(*this + __i); }
296 inline _Bit_iterator
297 operator+(ptrdiff_t __n, const _Bit_iterator& __x)
298 { return __x + __n; }
300 struct _Bit_const_iterator : public _Bit_iterator_base
302 typedef bool reference;
303 typedef bool const_reference;
304 typedef const bool* pointer;
305 typedef _Bit_const_iterator const_iterator;
307 _Bit_const_iterator() : _Bit_iterator_base(0, 0) { }
309 _Bit_const_iterator(_Bit_type * __x, unsigned int __y)
310 : _Bit_iterator_base(__x, __y) { }
312 _Bit_const_iterator(const _Bit_iterator& __x)
313 : _Bit_iterator_base(__x._M_p, __x._M_offset) { }
315 _Bit_iterator
316 _M_const_cast() const
317 { return _Bit_iterator(_M_p, _M_offset); }
319 const_reference
320 operator*() const
321 { return _Bit_reference(_M_p, 1UL << _M_offset); }
323 const_iterator&
324 operator++()
326 _M_bump_up();
327 return *this;
330 const_iterator
331 operator++(int)
333 const_iterator __tmp = *this;
334 _M_bump_up();
335 return __tmp;
338 const_iterator&
339 operator--()
341 _M_bump_down();
342 return *this;
345 const_iterator
346 operator--(int)
348 const_iterator __tmp = *this;
349 _M_bump_down();
350 return __tmp;
353 const_iterator&
354 operator+=(difference_type __i)
356 _M_incr(__i);
357 return *this;
360 const_iterator&
361 operator-=(difference_type __i)
363 *this += -__i;
364 return *this;
367 const_iterator
368 operator+(difference_type __i) const
370 const_iterator __tmp = *this;
371 return __tmp += __i;
374 const_iterator
375 operator-(difference_type __i) const
377 const_iterator __tmp = *this;
378 return __tmp -= __i;
381 const_reference
382 operator[](difference_type __i) const
383 { return *(*this + __i); }
386 inline _Bit_const_iterator
387 operator+(ptrdiff_t __n, const _Bit_const_iterator& __x)
388 { return __x + __n; }
390 inline void
391 __fill_bvector(_Bit_iterator __first, _Bit_iterator __last, bool __x)
393 for (; __first != __last; ++__first)
394 *__first = __x;
397 inline void
398 fill(_Bit_iterator __first, _Bit_iterator __last, const bool& __x)
400 if (__first._M_p != __last._M_p)
402 std::fill(__first._M_p + 1, __last._M_p, __x ? ~0 : 0);
403 __fill_bvector(__first, _Bit_iterator(__first._M_p + 1, 0), __x);
404 __fill_bvector(_Bit_iterator(__last._M_p, 0), __last, __x);
406 else
407 __fill_bvector(__first, __last, __x);
410 template<typename _Alloc>
411 struct _Bvector_base
413 typedef typename __gnu_cxx::__alloc_traits<_Alloc>::template
414 rebind<_Bit_type>::other _Bit_alloc_type;
415 typedef typename __gnu_cxx::__alloc_traits<_Bit_alloc_type>
416 _Bit_alloc_traits;
417 typedef typename _Bit_alloc_traits::pointer _Bit_pointer;
419 struct _Bvector_impl
420 : public _Bit_alloc_type
422 _Bit_iterator _M_start;
423 _Bit_iterator _M_finish;
424 _Bit_pointer _M_end_of_storage;
426 _Bvector_impl()
427 : _Bit_alloc_type(), _M_start(), _M_finish(), _M_end_of_storage()
430 _Bvector_impl(const _Bit_alloc_type& __a)
431 : _Bit_alloc_type(__a), _M_start(), _M_finish(), _M_end_of_storage()
434 #if __cplusplus >= 201103L
435 _Bvector_impl(_Bit_alloc_type&& __a)
436 : _Bit_alloc_type(std::move(__a)), _M_start(), _M_finish(),
437 _M_end_of_storage()
439 #endif
441 _Bit_type*
442 _M_end_addr() const _GLIBCXX_NOEXCEPT
444 if (_M_end_of_storage)
445 return std::__addressof(_M_end_of_storage[-1]) + 1;
446 return 0;
450 public:
451 typedef _Alloc allocator_type;
453 _Bit_alloc_type&
454 _M_get_Bit_allocator() _GLIBCXX_NOEXCEPT
455 { return *static_cast<_Bit_alloc_type*>(&this->_M_impl); }
457 const _Bit_alloc_type&
458 _M_get_Bit_allocator() const _GLIBCXX_NOEXCEPT
459 { return *static_cast<const _Bit_alloc_type*>(&this->_M_impl); }
461 allocator_type
462 get_allocator() const _GLIBCXX_NOEXCEPT
463 { return allocator_type(_M_get_Bit_allocator()); }
465 _Bvector_base()
466 : _M_impl() { }
468 _Bvector_base(const allocator_type& __a)
469 : _M_impl(__a) { }
471 #if __cplusplus >= 201103L
472 _Bvector_base(_Bvector_base&& __x) noexcept
473 : _M_impl(std::move(__x._M_get_Bit_allocator()))
475 this->_M_impl._M_start = __x._M_impl._M_start;
476 this->_M_impl._M_finish = __x._M_impl._M_finish;
477 this->_M_impl._M_end_of_storage = __x._M_impl._M_end_of_storage;
478 __x._M_impl._M_start = _Bit_iterator();
479 __x._M_impl._M_finish = _Bit_iterator();
480 __x._M_impl._M_end_of_storage = nullptr;
482 #endif
484 ~_Bvector_base()
485 { this->_M_deallocate(); }
487 protected:
488 _Bvector_impl _M_impl;
490 _Bit_pointer
491 _M_allocate(size_t __n)
492 { return _Bit_alloc_traits::allocate(_M_impl, _S_nword(__n)); }
494 void
495 _M_deallocate()
497 if (_M_impl._M_start._M_p)
499 const size_t __n = _M_impl._M_end_addr() - _M_impl._M_start._M_p;
500 _Bit_alloc_traits::deallocate(_M_impl,
501 _M_impl._M_end_of_storage - __n,
502 __n);
506 static size_t
507 _S_nword(size_t __n)
508 { return (__n + int(_S_word_bit) - 1) / int(_S_word_bit); }
511 _GLIBCXX_END_NAMESPACE_CONTAINER
512 } // namespace std
514 // Declare a partial specialization of vector<T, Alloc>.
515 #include <bits/stl_vector.h>
517 namespace std _GLIBCXX_VISIBILITY(default)
519 _GLIBCXX_BEGIN_NAMESPACE_CONTAINER
522 * @brief A specialization of vector for booleans which offers fixed time
523 * access to individual elements in any order.
525 * @ingroup sequences
527 * @tparam _Alloc Allocator type.
529 * Note that vector<bool> does not actually meet the requirements for being
530 * a container. This is because the reference and pointer types are not
531 * really references and pointers to bool. See DR96 for details. @see
532 * vector for function documentation.
534 * In some terminology a %vector can be described as a dynamic
535 * C-style array, it offers fast and efficient access to individual
536 * elements in any order and saves the user from worrying about
537 * memory and size allocation. Subscripting ( @c [] ) access is
538 * also provided as with C-style arrays.
540 template<typename _Alloc>
541 class vector<bool, _Alloc> : protected _Bvector_base<_Alloc>
543 typedef _Bvector_base<_Alloc> _Base;
544 typedef typename _Base::_Bit_pointer _Bit_pointer;
545 typedef typename _Base::_Bit_alloc_traits _Bit_alloc_traits;
547 #if __cplusplus >= 201103L
548 template<typename> friend struct hash;
549 #endif
551 public:
552 typedef bool value_type;
553 typedef size_t size_type;
554 typedef ptrdiff_t difference_type;
555 typedef _Bit_reference reference;
556 typedef bool const_reference;
557 typedef _Bit_reference* pointer;
558 typedef const bool* const_pointer;
559 typedef _Bit_iterator iterator;
560 typedef _Bit_const_iterator const_iterator;
561 typedef std::reverse_iterator<const_iterator> const_reverse_iterator;
562 typedef std::reverse_iterator<iterator> reverse_iterator;
563 typedef _Alloc allocator_type;
565 allocator_type get_allocator() const
566 { return _Base::get_allocator(); }
568 protected:
569 using _Base::_M_allocate;
570 using _Base::_M_deallocate;
571 using _Base::_S_nword;
572 using _Base::_M_get_Bit_allocator;
574 public:
575 vector()
576 #if __cplusplus >= 201103L
577 noexcept(is_nothrow_default_constructible<allocator_type>::value)
578 #endif
579 : _Base() { }
581 explicit
582 vector(const allocator_type& __a)
583 : _Base(__a) { }
585 #if __cplusplus >= 201103L
586 explicit
587 vector(size_type __n, const allocator_type& __a = allocator_type())
588 : vector(__n, false, __a)
591 vector(size_type __n, const bool& __value,
592 const allocator_type& __a = allocator_type())
593 : _Base(__a)
595 _M_initialize(__n);
596 std::fill(this->_M_impl._M_start._M_p, this->_M_impl._M_end_addr(),
597 __value ? ~0 : 0);
599 #else
600 explicit
601 vector(size_type __n, const bool& __value = bool(),
602 const allocator_type& __a = allocator_type())
603 : _Base(__a)
605 _M_initialize(__n);
606 std::fill(this->_M_impl._M_start._M_p, this->_M_impl._M_end_addr(),
607 __value ? ~0 : 0);
609 #endif
611 vector(const vector& __x)
612 : _Base(_Bit_alloc_traits::_S_select_on_copy(__x._M_get_Bit_allocator()))
614 _M_initialize(__x.size());
615 _M_copy_aligned(__x.begin(), __x.end(), this->_M_impl._M_start);
618 #if __cplusplus >= 201103L
619 vector(vector&& __x) noexcept
620 : _Base(std::move(__x)) { }
622 vector(vector&& __x, const allocator_type& __a)
623 noexcept(_Bit_alloc_traits::_S_always_equal())
624 : _Base(__a)
626 if (__x.get_allocator() == __a)
628 this->_M_impl._M_start = __x._M_impl._M_start;
629 this->_M_impl._M_finish = __x._M_impl._M_finish;
630 this->_M_impl._M_end_of_storage = __x._M_impl._M_end_of_storage;
631 __x._M_impl._M_start = _Bit_iterator();
632 __x._M_impl._M_finish = _Bit_iterator();
633 __x._M_impl._M_end_of_storage = nullptr;
635 else
637 _M_initialize(__x.size());
638 _M_copy_aligned(__x.begin(), __x.end(), begin());
639 __x.clear();
643 vector(const vector& __x, const allocator_type& __a)
644 : _Base(__a)
646 _M_initialize(__x.size());
647 _M_copy_aligned(__x.begin(), __x.end(), this->_M_impl._M_start);
650 vector(initializer_list<bool> __l,
651 const allocator_type& __a = allocator_type())
652 : _Base(__a)
654 _M_initialize_range(__l.begin(), __l.end(),
655 random_access_iterator_tag());
657 #endif
659 #if __cplusplus >= 201103L
660 template<typename _InputIterator,
661 typename = std::_RequireInputIter<_InputIterator>>
662 vector(_InputIterator __first, _InputIterator __last,
663 const allocator_type& __a = allocator_type())
664 : _Base(__a)
665 { _M_initialize_dispatch(__first, __last, __false_type()); }
666 #else
667 template<typename _InputIterator>
668 vector(_InputIterator __first, _InputIterator __last,
669 const allocator_type& __a = allocator_type())
670 : _Base(__a)
672 typedef typename std::__is_integer<_InputIterator>::__type _Integral;
673 _M_initialize_dispatch(__first, __last, _Integral());
675 #endif
677 ~vector() _GLIBCXX_NOEXCEPT { }
679 vector&
680 operator=(const vector& __x)
682 if (&__x == this)
683 return *this;
684 #if __cplusplus >= 201103L
685 if (_Bit_alloc_traits::_S_propagate_on_copy_assign())
687 if (this->_M_get_Bit_allocator() != __x._M_get_Bit_allocator())
689 this->_M_deallocate();
690 std::__alloc_on_copy(_M_get_Bit_allocator(),
691 __x._M_get_Bit_allocator());
692 _M_initialize(__x.size());
694 else
695 std::__alloc_on_copy(_M_get_Bit_allocator(),
696 __x._M_get_Bit_allocator());
698 #endif
699 if (__x.size() > capacity())
701 this->_M_deallocate();
702 _M_initialize(__x.size());
704 this->_M_impl._M_finish = _M_copy_aligned(__x.begin(), __x.end(),
705 begin());
706 return *this;
709 #if __cplusplus >= 201103L
710 vector&
711 operator=(vector&& __x) noexcept(_Bit_alloc_traits::_S_nothrow_move())
713 if (_Bit_alloc_traits::_S_propagate_on_move_assign()
714 || this->_M_get_Bit_allocator() == __x._M_get_Bit_allocator())
716 this->_M_deallocate();
717 this->_M_impl._M_start = __x._M_impl._M_start;
718 this->_M_impl._M_finish = __x._M_impl._M_finish;
719 this->_M_impl._M_end_of_storage = __x._M_impl._M_end_of_storage;
720 __x._M_impl._M_start = _Bit_iterator();
721 __x._M_impl._M_finish = _Bit_iterator();
722 __x._M_impl._M_end_of_storage = nullptr;
723 std::__alloc_on_move(_M_get_Bit_allocator(),
724 __x._M_get_Bit_allocator());
726 else
728 if (__x.size() > capacity())
730 this->_M_deallocate();
731 _M_initialize(__x.size());
733 this->_M_impl._M_finish = _M_copy_aligned(__x.begin(), __x.end(),
734 begin());
735 __x.clear();
737 return *this;
740 vector&
741 operator=(initializer_list<bool> __l)
743 this->assign (__l.begin(), __l.end());
744 return *this;
746 #endif
748 // assign(), a generalized assignment member function. Two
749 // versions: one that takes a count, and one that takes a range.
750 // The range version is a member template, so we dispatch on whether
751 // or not the type is an integer.
752 void
753 assign(size_type __n, const bool& __x)
754 { _M_fill_assign(__n, __x); }
756 #if __cplusplus >= 201103L
757 template<typename _InputIterator,
758 typename = std::_RequireInputIter<_InputIterator>>
759 void
760 assign(_InputIterator __first, _InputIterator __last)
761 { _M_assign_dispatch(__first, __last, __false_type()); }
762 #else
763 template<typename _InputIterator>
764 void
765 assign(_InputIterator __first, _InputIterator __last)
767 typedef typename std::__is_integer<_InputIterator>::__type _Integral;
768 _M_assign_dispatch(__first, __last, _Integral());
770 #endif
772 #if __cplusplus >= 201103L
773 void
774 assign(initializer_list<bool> __l)
775 { this->assign(__l.begin(), __l.end()); }
776 #endif
778 iterator
779 begin() _GLIBCXX_NOEXCEPT
780 { return this->_M_impl._M_start; }
782 const_iterator
783 begin() const _GLIBCXX_NOEXCEPT
784 { return this->_M_impl._M_start; }
786 iterator
787 end() _GLIBCXX_NOEXCEPT
788 { return this->_M_impl._M_finish; }
790 const_iterator
791 end() const _GLIBCXX_NOEXCEPT
792 { return this->_M_impl._M_finish; }
794 reverse_iterator
795 rbegin() _GLIBCXX_NOEXCEPT
796 { return reverse_iterator(end()); }
798 const_reverse_iterator
799 rbegin() const _GLIBCXX_NOEXCEPT
800 { return const_reverse_iterator(end()); }
802 reverse_iterator
803 rend() _GLIBCXX_NOEXCEPT
804 { return reverse_iterator(begin()); }
806 const_reverse_iterator
807 rend() const _GLIBCXX_NOEXCEPT
808 { return const_reverse_iterator(begin()); }
810 #if __cplusplus >= 201103L
811 const_iterator
812 cbegin() const noexcept
813 { return this->_M_impl._M_start; }
815 const_iterator
816 cend() const noexcept
817 { return this->_M_impl._M_finish; }
819 const_reverse_iterator
820 crbegin() const noexcept
821 { return const_reverse_iterator(end()); }
823 const_reverse_iterator
824 crend() const noexcept
825 { return const_reverse_iterator(begin()); }
826 #endif
828 size_type
829 size() const _GLIBCXX_NOEXCEPT
830 { return size_type(end() - begin()); }
832 size_type
833 max_size() const _GLIBCXX_NOEXCEPT
835 const size_type __isize =
836 __gnu_cxx::__numeric_traits<difference_type>::__max
837 - int(_S_word_bit) + 1;
838 const size_type __asize
839 = _Bit_alloc_traits::max_size(_M_get_Bit_allocator());
840 return (__asize <= __isize / int(_S_word_bit)
841 ? __asize * int(_S_word_bit) : __isize);
844 size_type
845 capacity() const _GLIBCXX_NOEXCEPT
846 { return size_type(const_iterator(this->_M_impl._M_end_addr(), 0)
847 - begin()); }
849 bool
850 empty() const _GLIBCXX_NOEXCEPT
851 { return begin() == end(); }
853 reference
854 operator[](size_type __n)
856 return *iterator(this->_M_impl._M_start._M_p
857 + __n / int(_S_word_bit), __n % int(_S_word_bit));
860 const_reference
861 operator[](size_type __n) const
863 return *const_iterator(this->_M_impl._M_start._M_p
864 + __n / int(_S_word_bit), __n % int(_S_word_bit));
867 protected:
868 void
869 _M_range_check(size_type __n) const
871 if (__n >= this->size())
872 __throw_out_of_range_fmt(__N("vector<bool>::_M_range_check: __n "
873 "(which is %zu) >= this->size() "
874 "(which is %zu)"),
875 __n, this->size());
878 public:
879 reference
880 at(size_type __n)
881 { _M_range_check(__n); return (*this)[__n]; }
883 const_reference
884 at(size_type __n) const
885 { _M_range_check(__n); return (*this)[__n]; }
887 void
888 reserve(size_type __n)
890 if (__n > max_size())
891 __throw_length_error(__N("vector::reserve"));
892 if (capacity() < __n)
893 _M_reallocate(__n);
896 reference
897 front()
898 { return *begin(); }
900 const_reference
901 front() const
902 { return *begin(); }
904 reference
905 back()
906 { return *(end() - 1); }
908 const_reference
909 back() const
910 { return *(end() - 1); }
912 // _GLIBCXX_RESOLVE_LIB_DEFECTS
913 // DR 464. Suggestion for new member functions in standard containers.
914 // N.B. DR 464 says nothing about vector<bool> but we need something
915 // here due to the way we are implementing DR 464 in the debug-mode
916 // vector class.
917 void
918 data() _GLIBCXX_NOEXCEPT { }
920 void
921 push_back(bool __x)
923 if (this->_M_impl._M_finish._M_p != this->_M_impl._M_end_addr())
924 *this->_M_impl._M_finish++ = __x;
925 else
926 _M_insert_aux(end(), __x);
929 void
930 swap(vector& __x)
931 #if __cplusplus >= 201103L
932 noexcept(_Bit_alloc_traits::_S_nothrow_swap())
933 #endif
935 std::swap(this->_M_impl._M_start, __x._M_impl._M_start);
936 std::swap(this->_M_impl._M_finish, __x._M_impl._M_finish);
937 std::swap(this->_M_impl._M_end_of_storage,
938 __x._M_impl._M_end_of_storage);
939 _Bit_alloc_traits::_S_on_swap(_M_get_Bit_allocator(),
940 __x._M_get_Bit_allocator());
943 // [23.2.5]/1, third-to-last entry in synopsis listing
944 static void
945 swap(reference __x, reference __y) _GLIBCXX_NOEXCEPT
947 bool __tmp = __x;
948 __x = __y;
949 __y = __tmp;
952 iterator
953 #if __cplusplus >= 201103L
954 insert(const_iterator __position, const bool& __x = bool())
955 #else
956 insert(iterator __position, const bool& __x = bool())
957 #endif
959 const difference_type __n = __position - begin();
960 if (this->_M_impl._M_finish._M_p != this->_M_impl._M_end_addr()
961 && __position == end())
962 *this->_M_impl._M_finish++ = __x;
963 else
964 _M_insert_aux(__position._M_const_cast(), __x);
965 return begin() + __n;
968 #if __cplusplus >= 201103L
969 template<typename _InputIterator,
970 typename = std::_RequireInputIter<_InputIterator>>
971 iterator
972 insert(const_iterator __position,
973 _InputIterator __first, _InputIterator __last)
975 difference_type __offset = __position - cbegin();
976 _M_insert_dispatch(__position._M_const_cast(),
977 __first, __last, __false_type());
978 return begin() + __offset;
980 #else
981 template<typename _InputIterator>
982 void
983 insert(iterator __position,
984 _InputIterator __first, _InputIterator __last)
986 typedef typename std::__is_integer<_InputIterator>::__type _Integral;
987 _M_insert_dispatch(__position, __first, __last, _Integral());
989 #endif
991 #if __cplusplus >= 201103L
992 iterator
993 insert(const_iterator __position, size_type __n, const bool& __x)
995 difference_type __offset = __position - cbegin();
996 _M_fill_insert(__position._M_const_cast(), __n, __x);
997 return begin() + __offset;
999 #else
1000 void
1001 insert(iterator __position, size_type __n, const bool& __x)
1002 { _M_fill_insert(__position, __n, __x); }
1003 #endif
1005 #if __cplusplus >= 201103L
1006 iterator
1007 insert(const_iterator __p, initializer_list<bool> __l)
1008 { return this->insert(__p, __l.begin(), __l.end()); }
1009 #endif
1011 void
1012 pop_back()
1013 { --this->_M_impl._M_finish; }
1015 iterator
1016 #if __cplusplus >= 201103L
1017 erase(const_iterator __position)
1018 #else
1019 erase(iterator __position)
1020 #endif
1021 { return _M_erase(__position._M_const_cast()); }
1023 iterator
1024 #if __cplusplus >= 201103L
1025 erase(const_iterator __first, const_iterator __last)
1026 #else
1027 erase(iterator __first, iterator __last)
1028 #endif
1029 { return _M_erase(__first._M_const_cast(), __last._M_const_cast()); }
1031 void
1032 resize(size_type __new_size, bool __x = bool())
1034 if (__new_size < size())
1035 _M_erase_at_end(begin() + difference_type(__new_size));
1036 else
1037 insert(end(), __new_size - size(), __x);
1040 #if __cplusplus >= 201103L
1041 void
1042 shrink_to_fit()
1043 { _M_shrink_to_fit(); }
1044 #endif
1046 void
1047 flip() _GLIBCXX_NOEXCEPT
1049 _Bit_type * const __end = this->_M_impl._M_end_addr();
1050 for (_Bit_type * __p = this->_M_impl._M_start._M_p; __p != __end; ++__p)
1051 *__p = ~*__p;
1054 void
1055 clear() _GLIBCXX_NOEXCEPT
1056 { _M_erase_at_end(begin()); }
1058 #if __cplusplus >= 201103L
1059 template<typename... _Args>
1060 void
1061 emplace_back(_Args&&... __args)
1062 { push_back(bool(__args...)); }
1064 template<typename... _Args>
1065 iterator
1066 emplace(const_iterator __pos, _Args&&... __args)
1067 { return insert(__pos, bool(__args...)); }
1068 #endif
1070 protected:
1071 // Precondition: __first._M_offset == 0 && __result._M_offset == 0.
1072 iterator
1073 _M_copy_aligned(const_iterator __first, const_iterator __last,
1074 iterator __result)
1076 _Bit_type* __q = std::copy(__first._M_p, __last._M_p, __result._M_p);
1077 return std::copy(const_iterator(__last._M_p, 0), __last,
1078 iterator(__q, 0));
1081 void
1082 _M_initialize(size_type __n)
1084 _Bit_pointer __q = this->_M_allocate(__n);
1085 this->_M_impl._M_end_of_storage = __q + _S_nword(__n);
1086 this->_M_impl._M_start = iterator(std::__addressof(*__q), 0);
1087 this->_M_impl._M_finish = this->_M_impl._M_start + difference_type(__n);
1090 void
1091 _M_reallocate(size_type __n);
1093 #if __cplusplus >= 201103L
1094 bool
1095 _M_shrink_to_fit();
1096 #endif
1098 // Check whether it's an integral type. If so, it's not an iterator.
1100 // _GLIBCXX_RESOLVE_LIB_DEFECTS
1101 // 438. Ambiguity in the "do the right thing" clause
1102 template<typename _Integer>
1103 void
1104 _M_initialize_dispatch(_Integer __n, _Integer __x, __true_type)
1106 _M_initialize(static_cast<size_type>(__n));
1107 std::fill(this->_M_impl._M_start._M_p,
1108 this->_M_impl._M_end_addr(), __x ? ~0 : 0);
1111 template<typename _InputIterator>
1112 void
1113 _M_initialize_dispatch(_InputIterator __first, _InputIterator __last,
1114 __false_type)
1115 { _M_initialize_range(__first, __last,
1116 std::__iterator_category(__first)); }
1118 template<typename _InputIterator>
1119 void
1120 _M_initialize_range(_InputIterator __first, _InputIterator __last,
1121 std::input_iterator_tag)
1123 for (; __first != __last; ++__first)
1124 push_back(*__first);
1127 template<typename _ForwardIterator>
1128 void
1129 _M_initialize_range(_ForwardIterator __first, _ForwardIterator __last,
1130 std::forward_iterator_tag)
1132 const size_type __n = std::distance(__first, __last);
1133 _M_initialize(__n);
1134 std::copy(__first, __last, this->_M_impl._M_start);
1137 // _GLIBCXX_RESOLVE_LIB_DEFECTS
1138 // 438. Ambiguity in the "do the right thing" clause
1139 template<typename _Integer>
1140 void
1141 _M_assign_dispatch(_Integer __n, _Integer __val, __true_type)
1142 { _M_fill_assign(__n, __val); }
1144 template<class _InputIterator>
1145 void
1146 _M_assign_dispatch(_InputIterator __first, _InputIterator __last,
1147 __false_type)
1148 { _M_assign_aux(__first, __last, std::__iterator_category(__first)); }
1150 void
1151 _M_fill_assign(size_t __n, bool __x)
1153 if (__n > size())
1155 std::fill(this->_M_impl._M_start._M_p,
1156 this->_M_impl._M_end_addr(), __x ? ~0 : 0);
1157 insert(end(), __n - size(), __x);
1159 else
1161 _M_erase_at_end(begin() + __n);
1162 std::fill(this->_M_impl._M_start._M_p,
1163 this->_M_impl._M_end_addr(), __x ? ~0 : 0);
1167 template<typename _InputIterator>
1168 void
1169 _M_assign_aux(_InputIterator __first, _InputIterator __last,
1170 std::input_iterator_tag)
1172 iterator __cur = begin();
1173 for (; __first != __last && __cur != end(); ++__cur, ++__first)
1174 *__cur = *__first;
1175 if (__first == __last)
1176 _M_erase_at_end(__cur);
1177 else
1178 insert(end(), __first, __last);
1181 template<typename _ForwardIterator>
1182 void
1183 _M_assign_aux(_ForwardIterator __first, _ForwardIterator __last,
1184 std::forward_iterator_tag)
1186 const size_type __len = std::distance(__first, __last);
1187 if (__len < size())
1188 _M_erase_at_end(std::copy(__first, __last, begin()));
1189 else
1191 _ForwardIterator __mid = __first;
1192 std::advance(__mid, size());
1193 std::copy(__first, __mid, begin());
1194 insert(end(), __mid, __last);
1198 // Check whether it's an integral type. If so, it's not an iterator.
1200 // _GLIBCXX_RESOLVE_LIB_DEFECTS
1201 // 438. Ambiguity in the "do the right thing" clause
1202 template<typename _Integer>
1203 void
1204 _M_insert_dispatch(iterator __pos, _Integer __n, _Integer __x,
1205 __true_type)
1206 { _M_fill_insert(__pos, __n, __x); }
1208 template<typename _InputIterator>
1209 void
1210 _M_insert_dispatch(iterator __pos,
1211 _InputIterator __first, _InputIterator __last,
1212 __false_type)
1213 { _M_insert_range(__pos, __first, __last,
1214 std::__iterator_category(__first)); }
1216 void
1217 _M_fill_insert(iterator __position, size_type __n, bool __x);
1219 template<typename _InputIterator>
1220 void
1221 _M_insert_range(iterator __pos, _InputIterator __first,
1222 _InputIterator __last, std::input_iterator_tag)
1224 for (; __first != __last; ++__first)
1226 __pos = insert(__pos, *__first);
1227 ++__pos;
1231 template<typename _ForwardIterator>
1232 void
1233 _M_insert_range(iterator __position, _ForwardIterator __first,
1234 _ForwardIterator __last, std::forward_iterator_tag);
1236 void
1237 _M_insert_aux(iterator __position, bool __x);
1239 size_type
1240 _M_check_len(size_type __n, const char* __s) const
1242 if (max_size() - size() < __n)
1243 __throw_length_error(__N(__s));
1245 const size_type __len = size() + std::max(size(), __n);
1246 return (__len < size() || __len > max_size()) ? max_size() : __len;
1249 void
1250 _M_erase_at_end(iterator __pos)
1251 { this->_M_impl._M_finish = __pos; }
1253 iterator
1254 _M_erase(iterator __pos);
1256 iterator
1257 _M_erase(iterator __first, iterator __last);
1260 _GLIBCXX_END_NAMESPACE_CONTAINER
1261 } // namespace std
1263 #if __cplusplus >= 201103L
1265 #include <bits/functional_hash.h>
1267 namespace std _GLIBCXX_VISIBILITY(default)
1269 _GLIBCXX_BEGIN_NAMESPACE_VERSION
1271 // DR 1182.
1272 /// std::hash specialization for vector<bool>.
1273 template<typename _Alloc>
1274 struct hash<_GLIBCXX_STD_C::vector<bool, _Alloc>>
1275 : public __hash_base<size_t, _GLIBCXX_STD_C::vector<bool, _Alloc>>
1277 size_t
1278 operator()(const _GLIBCXX_STD_C::vector<bool, _Alloc>&) const noexcept;
1281 _GLIBCXX_END_NAMESPACE_VERSION
1282 }// namespace std
1284 #endif // C++11
1286 #endif