target-supports.exp (get_compiler_messages): Replace with...
[official-gcc.git] / libstdc++-v3 / include / bits / stl_bvector.h
blob255e00b793c7e9fa16d479af0874dd8cc0eb6275
1 // vector<bool> specialization -*- C++ -*-
3 // Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007
4 // Free Software Foundation, Inc.
5 //
6 // This file is part of the GNU ISO C++ Library. This library is free
7 // software; you can redistribute it and/or modify it under the
8 // terms of the GNU General Public License as published by the
9 // Free Software Foundation; either version 2, or (at your option)
10 // any later version.
12 // This library is distributed in the hope that it will be useful,
13 // but WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 // GNU General Public License for more details.
17 // You should have received a copy of the GNU General Public License along
18 // with this library; see the file COPYING. If not, write to the Free
19 // Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
20 // USA.
22 // As a special exception, you may use this file as part of a free software
23 // library without restriction. Specifically, if other files instantiate
24 // templates or use macros or inline functions from this file, or you compile
25 // this file and link it with other files to produce an executable, this
26 // file does not by itself cause the resulting executable to be covered by
27 // the GNU General Public License. This exception does not however
28 // invalidate any other reasons why the executable file might be covered by
29 // the GNU General Public License.
33 * Copyright (c) 1994
34 * Hewlett-Packard Company
36 * Permission to use, copy, modify, distribute and sell this software
37 * and its documentation for any purpose is hereby granted without fee,
38 * provided that the above copyright notice appear in all copies and
39 * that both that copyright notice and this permission notice appear
40 * in supporting documentation. Hewlett-Packard Company makes no
41 * representations about the suitability of this software for any
42 * purpose. It is provided "as is" without express or implied warranty.
45 * Copyright (c) 1996-1999
46 * Silicon Graphics Computer Systems, Inc.
48 * Permission to use, copy, modify, distribute and sell this software
49 * and its documentation for any purpose is hereby granted without fee,
50 * provided that the above copyright notice appear in all copies and
51 * that both that copyright notice and this permission notice appear
52 * in supporting documentation. Silicon Graphics makes no
53 * representations about the suitability of this software for any
54 * purpose. It is provided "as is" without express or implied warranty.
57 /** @file stl_bvector.h
58 * This is an internal header file, included by other library headers.
59 * You should not attempt to use it directly.
62 #ifndef _STL_BVECTOR_H
63 #define _STL_BVECTOR_H 1
65 _GLIBCXX_BEGIN_NESTED_NAMESPACE(std, _GLIBCXX_STD_D)
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() : _M_p(0), _M_mask(0) { }
80 operator bool() const
81 { return !!(*_M_p & _M_mask); }
83 _Bit_reference&
84 operator=(bool __x)
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)
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()
107 { *_M_p ^= _M_mask; }
110 struct _Bit_iterator_base
111 : public std::iterator<std::random_access_iterator_tag, bool>
113 _Bit_type * _M_p;
114 unsigned int _M_offset;
116 _Bit_iterator_base(_Bit_type * __x, unsigned int __y)
117 : _M_p(__x), _M_offset(__y) { }
119 void
120 _M_bump_up()
122 if (_M_offset++ == int(_S_word_bit) - 1)
124 _M_offset = 0;
125 ++_M_p;
129 void
130 _M_bump_down()
132 if (_M_offset-- == 0)
134 _M_offset = int(_S_word_bit) - 1;
135 --_M_p;
139 void
140 _M_incr(ptrdiff_t __i)
142 difference_type __n = __i + _M_offset;
143 _M_p += __n / int(_S_word_bit);
144 __n = __n % int(_S_word_bit);
145 if (__n < 0)
147 __n += int(_S_word_bit);
148 --_M_p;
150 _M_offset = static_cast<unsigned int>(__n);
153 bool
154 operator==(const _Bit_iterator_base& __i) const
155 { return _M_p == __i._M_p && _M_offset == __i._M_offset; }
157 bool
158 operator<(const _Bit_iterator_base& __i) const
160 return _M_p < __i._M_p
161 || (_M_p == __i._M_p && _M_offset < __i._M_offset);
164 bool
165 operator!=(const _Bit_iterator_base& __i) const
166 { return !(*this == __i); }
168 bool
169 operator>(const _Bit_iterator_base& __i) const
170 { return __i < *this; }
172 bool
173 operator<=(const _Bit_iterator_base& __i) const
174 { return !(__i < *this); }
176 bool
177 operator>=(const _Bit_iterator_base& __i) const
178 { return !(*this < __i); }
181 inline ptrdiff_t
182 operator-(const _Bit_iterator_base& __x, const _Bit_iterator_base& __y)
184 return (int(_S_word_bit) * (__x._M_p - __y._M_p)
185 + __x._M_offset - __y._M_offset);
188 struct _Bit_iterator : public _Bit_iterator_base
190 typedef _Bit_reference reference;
191 typedef _Bit_reference* pointer;
192 typedef _Bit_iterator iterator;
194 _Bit_iterator() : _Bit_iterator_base(0, 0) { }
196 _Bit_iterator(_Bit_type * __x, unsigned int __y)
197 : _Bit_iterator_base(__x, __y) { }
199 reference
200 operator*() const
201 { return reference(_M_p, 1UL << _M_offset); }
203 iterator&
204 operator++()
206 _M_bump_up();
207 return *this;
210 iterator
211 operator++(int)
213 iterator __tmp = *this;
214 _M_bump_up();
215 return __tmp;
218 iterator&
219 operator--()
221 _M_bump_down();
222 return *this;
225 iterator
226 operator--(int)
228 iterator __tmp = *this;
229 _M_bump_down();
230 return __tmp;
233 iterator&
234 operator+=(difference_type __i)
236 _M_incr(__i);
237 return *this;
240 iterator&
241 operator-=(difference_type __i)
243 *this += -__i;
244 return *this;
247 iterator
248 operator+(difference_type __i) const
250 iterator __tmp = *this;
251 return __tmp += __i;
254 iterator
255 operator-(difference_type __i) const
257 iterator __tmp = *this;
258 return __tmp -= __i;
261 reference
262 operator[](difference_type __i) const
263 { return *(*this + __i); }
266 inline _Bit_iterator
267 operator+(ptrdiff_t __n, const _Bit_iterator& __x)
268 { return __x + __n; }
270 struct _Bit_const_iterator : public _Bit_iterator_base
272 typedef bool reference;
273 typedef bool const_reference;
274 typedef const bool* pointer;
275 typedef _Bit_const_iterator const_iterator;
277 _Bit_const_iterator() : _Bit_iterator_base(0, 0) { }
279 _Bit_const_iterator(_Bit_type * __x, unsigned int __y)
280 : _Bit_iterator_base(__x, __y) { }
282 _Bit_const_iterator(const _Bit_iterator& __x)
283 : _Bit_iterator_base(__x._M_p, __x._M_offset) { }
285 const_reference
286 operator*() const
287 { return _Bit_reference(_M_p, 1UL << _M_offset); }
289 const_iterator&
290 operator++()
292 _M_bump_up();
293 return *this;
296 const_iterator
297 operator++(int)
299 const_iterator __tmp = *this;
300 _M_bump_up();
301 return __tmp;
304 const_iterator&
305 operator--()
307 _M_bump_down();
308 return *this;
311 const_iterator
312 operator--(int)
314 const_iterator __tmp = *this;
315 _M_bump_down();
316 return __tmp;
319 const_iterator&
320 operator+=(difference_type __i)
322 _M_incr(__i);
323 return *this;
326 const_iterator&
327 operator-=(difference_type __i)
329 *this += -__i;
330 return *this;
333 const_iterator
334 operator+(difference_type __i) const
336 const_iterator __tmp = *this;
337 return __tmp += __i;
340 const_iterator
341 operator-(difference_type __i) const
343 const_iterator __tmp = *this;
344 return __tmp -= __i;
347 const_reference
348 operator[](difference_type __i) const
349 { return *(*this + __i); }
352 inline _Bit_const_iterator
353 operator+(ptrdiff_t __n, const _Bit_const_iterator& __x)
354 { return __x + __n; }
356 inline void
357 __fill_bvector(_Bit_iterator __first, _Bit_iterator __last, bool __x)
359 for (; __first != __last; ++__first)
360 *__first = __x;
363 inline void
364 fill(_Bit_iterator __first, _Bit_iterator __last, const bool& __x)
366 if (__first._M_p != __last._M_p)
368 std::fill(__first._M_p + 1, __last._M_p, __x ? ~0 : 0);
369 __fill_bvector(__first, _Bit_iterator(__first._M_p + 1, 0), __x);
370 __fill_bvector(_Bit_iterator(__last._M_p, 0), __last, __x);
372 else
373 __fill_bvector(__first, __last, __x);
376 template<typename _Alloc>
377 struct _Bvector_base
379 typedef typename _Alloc::template rebind<_Bit_type>::other
380 _Bit_alloc_type;
382 struct _Bvector_impl
383 : public _Bit_alloc_type
385 _Bit_iterator _M_start;
386 _Bit_iterator _M_finish;
387 _Bit_type* _M_end_of_storage;
389 _Bvector_impl()
390 : _Bit_alloc_type(), _M_start(), _M_finish(), _M_end_of_storage(0)
393 _Bvector_impl(const _Bit_alloc_type& __a)
394 : _Bit_alloc_type(__a), _M_start(), _M_finish(), _M_end_of_storage(0)
398 public:
399 typedef _Alloc allocator_type;
401 _Bit_alloc_type&
402 _M_get_Bit_allocator()
403 { return *static_cast<_Bit_alloc_type*>(&this->_M_impl); }
405 const _Bit_alloc_type&
406 _M_get_Bit_allocator() const
407 { return *static_cast<const _Bit_alloc_type*>(&this->_M_impl); }
409 allocator_type
410 get_allocator() const
411 { return allocator_type(_M_get_Bit_allocator()); }
413 _Bvector_base()
414 : _M_impl() { }
416 _Bvector_base(const allocator_type& __a)
417 : _M_impl(__a) { }
419 #ifdef __GXX_EXPERIMENTAL_CXX0X__
420 _Bvector_base(_Bvector_base&& __x)
421 : _M_impl(__x._M_get_Bit_allocator())
423 this->_M_impl._M_start = __x._M_impl._M_start;
424 this->_M_impl._M_finish = __x._M_impl._M_finish;
425 this->_M_impl._M_end_of_storage = __x._M_impl._M_end_of_storage;
426 __x._M_impl._M_start = _Bit_iterator();
427 __x._M_impl._M_finish = _Bit_iterator();
428 __x._M_impl._M_end_of_storage = 0;
430 #endif
432 ~_Bvector_base()
433 { this->_M_deallocate(); }
435 protected:
436 _Bvector_impl _M_impl;
438 _Bit_type*
439 _M_allocate(size_t __n)
440 { return _M_impl.allocate((__n + int(_S_word_bit) - 1)
441 / int(_S_word_bit)); }
443 void
444 _M_deallocate()
446 if (_M_impl._M_start._M_p)
447 _M_impl.deallocate(_M_impl._M_start._M_p,
448 _M_impl._M_end_of_storage - _M_impl._M_start._M_p);
452 _GLIBCXX_END_NESTED_NAMESPACE
454 // Declare a partial specialization of vector<T, Alloc>.
455 #include <bits/stl_vector.h>
457 _GLIBCXX_BEGIN_NESTED_NAMESPACE(std, _GLIBCXX_STD_D)
460 * @brief A specialization of vector for booleans which offers fixed time
461 * access to individual elements in any order.
463 * Note that vector<bool> does not actually meet the requirements for being
464 * a container. This is because the reference and pointer types are not
465 * really references and pointers to bool. See DR96 for details. @see
466 * vector for function documentation.
468 * @ingroup Containers
469 * @ingroup Sequences
471 * In some terminology a %vector can be described as a dynamic
472 * C-style array, it offers fast and efficient access to individual
473 * elements in any order and saves the user from worrying about
474 * memory and size allocation. Subscripting ( @c [] ) access is
475 * also provided as with C-style arrays.
477 template<typename _Alloc>
478 class vector<bool, _Alloc> : protected _Bvector_base<_Alloc>
480 typedef _Bvector_base<_Alloc> _Base;
482 public:
483 typedef bool value_type;
484 typedef size_t size_type;
485 typedef ptrdiff_t difference_type;
486 typedef _Bit_reference reference;
487 typedef bool const_reference;
488 typedef _Bit_reference* pointer;
489 typedef const bool* const_pointer;
490 typedef _Bit_iterator iterator;
491 typedef _Bit_const_iterator const_iterator;
492 typedef std::reverse_iterator<const_iterator> const_reverse_iterator;
493 typedef std::reverse_iterator<iterator> reverse_iterator;
494 typedef _Alloc allocator_type;
496 allocator_type get_allocator() const
497 { return _Base::get_allocator(); }
499 protected:
500 using _Base::_M_allocate;
501 using _Base::_M_deallocate;
502 using _Base::_M_get_Bit_allocator;
504 public:
505 vector()
506 : _Base() { }
508 explicit
509 vector(const allocator_type& __a)
510 : _Base(__a) { }
512 explicit
513 vector(size_type __n, const bool& __value = bool(),
514 const allocator_type& __a = allocator_type())
515 : _Base(__a)
517 _M_initialize(__n);
518 std::fill(this->_M_impl._M_start._M_p, this->_M_impl._M_end_of_storage,
519 __value ? ~0 : 0);
522 vector(const vector& __x)
523 : _Base(__x._M_get_Bit_allocator())
525 _M_initialize(__x.size());
526 _M_copy_aligned(__x.begin(), __x.end(), this->_M_impl._M_start);
529 #ifdef __GXX_EXPERIMENTAL_CXX0X__
530 vector(vector&& __x)
531 : _Base(std::forward<_Base>(__x)) { }
532 #endif
534 template<typename _InputIterator>
535 vector(_InputIterator __first, _InputIterator __last,
536 const allocator_type& __a = allocator_type())
537 : _Base(__a)
539 typedef typename std::__is_integer<_InputIterator>::__type _Integral;
540 _M_initialize_dispatch(__first, __last, _Integral());
543 ~vector() { }
545 vector&
546 operator=(const vector& __x)
548 if (&__x == this)
549 return *this;
550 if (__x.size() > capacity())
552 this->_M_deallocate();
553 _M_initialize(__x.size());
555 this->_M_impl._M_finish = _M_copy_aligned(__x.begin(), __x.end(),
556 begin());
557 return *this;
560 #ifdef __GXX_EXPERIMENTAL_CXX0X__
561 vector&
562 operator=(vector&& __x)
564 // NB: DR 675.
565 this->clear();
566 this->swap(__x);
567 return *this;
569 #endif
571 // assign(), a generalized assignment member function. Two
572 // versions: one that takes a count, and one that takes a range.
573 // The range version is a member template, so we dispatch on whether
574 // or not the type is an integer.
575 void
576 assign(size_type __n, const bool& __x)
577 { _M_fill_assign(__n, __x); }
579 template<typename _InputIterator>
580 void
581 assign(_InputIterator __first, _InputIterator __last)
583 typedef typename std::__is_integer<_InputIterator>::__type _Integral;
584 _M_assign_dispatch(__first, __last, _Integral());
587 iterator
588 begin()
589 { return this->_M_impl._M_start; }
591 const_iterator
592 begin() const
593 { return this->_M_impl._M_start; }
595 iterator
596 end()
597 { return this->_M_impl._M_finish; }
599 const_iterator
600 end() const
601 { return this->_M_impl._M_finish; }
603 reverse_iterator
604 rbegin()
605 { return reverse_iterator(end()); }
607 const_reverse_iterator
608 rbegin() const
609 { return const_reverse_iterator(end()); }
611 reverse_iterator
612 rend()
613 { return reverse_iterator(begin()); }
615 const_reverse_iterator
616 rend() const
617 { return const_reverse_iterator(begin()); }
619 #ifdef __GXX_EXPERIMENTAL_CXX0X__
620 const_iterator
621 cbegin() const
622 { return this->_M_impl._M_start; }
624 const_iterator
625 cend() const
626 { return this->_M_impl._M_finish; }
628 const_reverse_iterator
629 crbegin() const
630 { return const_reverse_iterator(end()); }
632 const_reverse_iterator
633 crend() const
634 { return const_reverse_iterator(begin()); }
635 #endif
637 size_type
638 size() const
639 { return size_type(end() - begin()); }
641 size_type
642 max_size() const
644 const size_type __isize =
645 __gnu_cxx::__numeric_traits<difference_type>::__max
646 - int(_S_word_bit) + 1;
647 const size_type __asize = _M_get_Bit_allocator().max_size();
648 return (__asize <= __isize / int(_S_word_bit)
649 ? __asize * int(_S_word_bit) : __isize);
652 size_type
653 capacity() const
654 { return size_type(const_iterator(this->_M_impl._M_end_of_storage, 0)
655 - begin()); }
657 bool
658 empty() const
659 { return begin() == end(); }
661 reference
662 operator[](size_type __n)
664 return *iterator(this->_M_impl._M_start._M_p
665 + __n / int(_S_word_bit), __n % int(_S_word_bit));
668 const_reference
669 operator[](size_type __n) const
671 return *const_iterator(this->_M_impl._M_start._M_p
672 + __n / int(_S_word_bit), __n % int(_S_word_bit));
675 protected:
676 void
677 _M_range_check(size_type __n) const
679 if (__n >= this->size())
680 __throw_out_of_range(__N("vector<bool>::_M_range_check"));
683 public:
684 reference
685 at(size_type __n)
686 { _M_range_check(__n); return (*this)[__n]; }
688 const_reference
689 at(size_type __n) const
690 { _M_range_check(__n); return (*this)[__n]; }
692 void
693 reserve(size_type __n)
695 if (__n > this->max_size())
696 __throw_length_error(__N("vector::reserve"));
697 if (this->capacity() < __n)
699 _Bit_type* __q = this->_M_allocate(__n);
700 this->_M_impl._M_finish = _M_copy_aligned(begin(), end(),
701 iterator(__q, 0));
702 this->_M_deallocate();
703 this->_M_impl._M_start = iterator(__q, 0);
704 this->_M_impl._M_end_of_storage = (__q + (__n + int(_S_word_bit) - 1)
705 / int(_S_word_bit));
709 reference
710 front()
711 { return *begin(); }
713 const_reference
714 front() const
715 { return *begin(); }
717 reference
718 back()
719 { return *(end() - 1); }
721 const_reference
722 back() const
723 { return *(end() - 1); }
725 // _GLIBCXX_RESOLVE_LIB_DEFECTS
726 // DR 464. Suggestion for new member functions in standard containers.
727 // N.B. DR 464 says nothing about vector<bool> but we need something
728 // here due to the way we are implementing DR 464 in the debug-mode
729 // vector class.
730 void
731 data() { }
733 void
734 push_back(bool __x)
736 if (this->_M_impl._M_finish._M_p != this->_M_impl._M_end_of_storage)
737 *this->_M_impl._M_finish++ = __x;
738 else
739 _M_insert_aux(end(), __x);
742 void
743 #ifdef __GXX_EXPERIMENTAL_CXX0X__
744 swap(vector&& __x)
745 #else
746 swap(vector& __x)
747 #endif
749 std::swap(this->_M_impl._M_start, __x._M_impl._M_start);
750 std::swap(this->_M_impl._M_finish, __x._M_impl._M_finish);
751 std::swap(this->_M_impl._M_end_of_storage,
752 __x._M_impl._M_end_of_storage);
754 // _GLIBCXX_RESOLVE_LIB_DEFECTS
755 // 431. Swapping containers with unequal allocators.
756 std::__alloc_swap<typename _Base::_Bit_alloc_type>::
757 _S_do_it(_M_get_Bit_allocator(), __x._M_get_Bit_allocator());
760 // [23.2.5]/1, third-to-last entry in synopsis listing
761 static void
762 swap(reference __x, reference __y)
764 bool __tmp = __x;
765 __x = __y;
766 __y = __tmp;
769 iterator
770 insert(iterator __position, const bool& __x = bool())
772 const difference_type __n = __position - begin();
773 if (this->_M_impl._M_finish._M_p != this->_M_impl._M_end_of_storage
774 && __position == end())
775 *this->_M_impl._M_finish++ = __x;
776 else
777 _M_insert_aux(__position, __x);
778 return begin() + __n;
781 template<typename _InputIterator>
782 void
783 insert(iterator __position,
784 _InputIterator __first, _InputIterator __last)
786 typedef typename std::__is_integer<_InputIterator>::__type _Integral;
787 _M_insert_dispatch(__position, __first, __last, _Integral());
790 void
791 insert(iterator __position, size_type __n, const bool& __x)
792 { _M_fill_insert(__position, __n, __x); }
794 void
795 pop_back()
796 { --this->_M_impl._M_finish; }
798 iterator
799 erase(iterator __position)
801 if (__position + 1 != end())
802 std::copy(__position + 1, end(), __position);
803 --this->_M_impl._M_finish;
804 return __position;
807 iterator
808 erase(iterator __first, iterator __last)
810 _M_erase_at_end(std::copy(__last, end(), __first));
811 return __first;
814 void
815 resize(size_type __new_size, bool __x = bool())
817 if (__new_size < size())
818 _M_erase_at_end(begin() + difference_type(__new_size));
819 else
820 insert(end(), __new_size - size(), __x);
823 void
824 flip()
826 for (_Bit_type * __p = this->_M_impl._M_start._M_p;
827 __p != this->_M_impl._M_end_of_storage; ++__p)
828 *__p = ~*__p;
831 void
832 clear()
833 { _M_erase_at_end(begin()); }
836 protected:
837 // Precondition: __first._M_offset == 0 && __result._M_offset == 0.
838 iterator
839 _M_copy_aligned(const_iterator __first, const_iterator __last,
840 iterator __result)
842 _Bit_type* __q = std::copy(__first._M_p, __last._M_p, __result._M_p);
843 return std::copy(const_iterator(__last._M_p, 0), __last,
844 iterator(__q, 0));
847 void
848 _M_initialize(size_type __n)
850 _Bit_type* __q = this->_M_allocate(__n);
851 this->_M_impl._M_end_of_storage = (__q
852 + ((__n + int(_S_word_bit) - 1)
853 / int(_S_word_bit)));
854 this->_M_impl._M_start = iterator(__q, 0);
855 this->_M_impl._M_finish = this->_M_impl._M_start + difference_type(__n);
858 // Check whether it's an integral type. If so, it's not an iterator.
860 // _GLIBCXX_RESOLVE_LIB_DEFECTS
861 // 438. Ambiguity in the "do the right thing" clause
862 template<typename _Integer>
863 void
864 _M_initialize_dispatch(_Integer __n, _Integer __x, __true_type)
866 _M_initialize(static_cast<size_type>(__n));
867 std::fill(this->_M_impl._M_start._M_p,
868 this->_M_impl._M_end_of_storage, __x ? ~0 : 0);
871 template<typename _InputIterator>
872 void
873 _M_initialize_dispatch(_InputIterator __first, _InputIterator __last,
874 __false_type)
875 { _M_initialize_range(__first, __last,
876 std::__iterator_category(__first)); }
878 template<typename _InputIterator>
879 void
880 _M_initialize_range(_InputIterator __first, _InputIterator __last,
881 std::input_iterator_tag)
883 for (; __first != __last; ++__first)
884 push_back(*__first);
887 template<typename _ForwardIterator>
888 void
889 _M_initialize_range(_ForwardIterator __first, _ForwardIterator __last,
890 std::forward_iterator_tag)
892 const size_type __n = std::distance(__first, __last);
893 _M_initialize(__n);
894 std::copy(__first, __last, this->_M_impl._M_start);
897 // _GLIBCXX_RESOLVE_LIB_DEFECTS
898 // 438. Ambiguity in the "do the right thing" clause
899 template<typename _Integer>
900 void
901 _M_assign_dispatch(_Integer __n, _Integer __val, __true_type)
902 { _M_fill_assign(__n, __val); }
904 template<class _InputIterator>
905 void
906 _M_assign_dispatch(_InputIterator __first, _InputIterator __last,
907 __false_type)
908 { _M_assign_aux(__first, __last, std::__iterator_category(__first)); }
910 void
911 _M_fill_assign(size_t __n, bool __x)
913 if (__n > size())
915 std::fill(this->_M_impl._M_start._M_p,
916 this->_M_impl._M_end_of_storage, __x ? ~0 : 0);
917 insert(end(), __n - size(), __x);
919 else
921 _M_erase_at_end(begin() + __n);
922 std::fill(this->_M_impl._M_start._M_p,
923 this->_M_impl._M_end_of_storage, __x ? ~0 : 0);
927 template<typename _InputIterator>
928 void
929 _M_assign_aux(_InputIterator __first, _InputIterator __last,
930 std::input_iterator_tag)
932 iterator __cur = begin();
933 for (; __first != __last && __cur != end(); ++__cur, ++__first)
934 *__cur = *__first;
935 if (__first == __last)
936 _M_erase_at_end(__cur);
937 else
938 insert(end(), __first, __last);
941 template<typename _ForwardIterator>
942 void
943 _M_assign_aux(_ForwardIterator __first, _ForwardIterator __last,
944 std::forward_iterator_tag)
946 const size_type __len = std::distance(__first, __last);
947 if (__len < size())
948 _M_erase_at_end(std::copy(__first, __last, begin()));
949 else
951 _ForwardIterator __mid = __first;
952 std::advance(__mid, size());
953 std::copy(__first, __mid, begin());
954 insert(end(), __mid, __last);
958 // Check whether it's an integral type. If so, it's not an iterator.
960 // _GLIBCXX_RESOLVE_LIB_DEFECTS
961 // 438. Ambiguity in the "do the right thing" clause
962 template<typename _Integer>
963 void
964 _M_insert_dispatch(iterator __pos, _Integer __n, _Integer __x,
965 __true_type)
966 { _M_fill_insert(__pos, __n, __x); }
968 template<typename _InputIterator>
969 void
970 _M_insert_dispatch(iterator __pos,
971 _InputIterator __first, _InputIterator __last,
972 __false_type)
973 { _M_insert_range(__pos, __first, __last,
974 std::__iterator_category(__first)); }
976 void
977 _M_fill_insert(iterator __position, size_type __n, bool __x);
979 template<typename _InputIterator>
980 void
981 _M_insert_range(iterator __pos, _InputIterator __first,
982 _InputIterator __last, std::input_iterator_tag)
984 for (; __first != __last; ++__first)
986 __pos = insert(__pos, *__first);
987 ++__pos;
991 template<typename _ForwardIterator>
992 void
993 _M_insert_range(iterator __position, _ForwardIterator __first,
994 _ForwardIterator __last, std::forward_iterator_tag);
996 void
997 _M_insert_aux(iterator __position, bool __x);
999 size_type
1000 _M_check_len(size_type __n, const char* __s) const
1002 if (max_size() - size() < __n)
1003 __throw_length_error(__N(__s));
1005 const size_type __len = size() + std::max(size(), __n);
1006 return (__len < size() || __len > max_size()) ? max_size() : __len;
1009 void
1010 _M_erase_at_end(iterator __pos)
1011 { this->_M_impl._M_finish = __pos; }
1014 _GLIBCXX_END_NESTED_NAMESPACE
1016 #endif