Remove trailing whitespace (see ChangeLog for longwinded description).
[gcc.git] / libstdc++-v3 / include / bits / stl_bvector.h
1 // bit_vector and vector<bool> specialization -*- C++ -*-
2
3 // Copyright (C) 2001, 2002, 2003, 2004 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 2, or (at your option)
9 // any later version.
10
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.
15
16 // You should have received a copy of the GNU General Public License along
17 // with this library; see the file COPYING. If not, write to the Free
18 // Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
19 // USA.
20
21 // As a special exception, you may use this file as part of a free software
22 // library without restriction. Specifically, if other files instantiate
23 // templates or use macros or inline functions from this file, or you compile
24 // this file and link it with other files to produce an executable, this
25 // file does not by itself cause the resulting executable to be covered by
26 // the GNU General Public License. This exception does not however
27 // invalidate any other reasons why the executable file might be covered by
28 // the GNU General Public License.
29
30 /*
31 *
32 * Copyright (c) 1994
33 * Hewlett-Packard Company
34 *
35 * Permission to use, copy, modify, distribute and sell this software
36 * and its documentation for any purpose is hereby granted without fee,
37 * provided that the above copyright notice appear in all copies and
38 * that both that copyright notice and this permission notice appear
39 * in supporting documentation. Hewlett-Packard Company makes no
40 * representations about the suitability of this software for any
41 * purpose. It is provided "as is" without express or implied warranty.
42 *
43 *
44 * Copyright (c) 1996-1999
45 * Silicon Graphics Computer Systems, Inc.
46 *
47 * Permission to use, copy, modify, distribute and sell this software
48 * and its documentation for any purpose is hereby granted without fee,
49 * provided that the above copyright notice appear in all copies and
50 * that both that copyright notice and this permission notice appear
51 * in supporting documentation. Silicon Graphics makes no
52 * representations about the suitability of this software for any
53 * purpose. It is provided "as is" without express or implied warranty.
54 */
55
56 /** @file stl_bvector.h
57 * This is an internal header file, included by other library headers.
58 * You should not attempt to use it directly.
59 */
60
61 #ifndef _BVECTOR_H
62 #define _BVECTOR_H 1
63
64 namespace __gnu_norm
65 {
66 typedef unsigned long _Bit_type;
67 enum { _S_word_bit = int(CHAR_BIT * sizeof(_Bit_type)) };
68
69 struct _Bit_reference
70 {
71 _Bit_type * _M_p;
72 _Bit_type _M_mask;
73
74 _Bit_reference(_Bit_type * __x, _Bit_type __y)
75 : _M_p(__x), _M_mask(__y) { }
76
77 _Bit_reference() : _M_p(0), _M_mask(0) { }
78
79 operator bool() const { return !!(*_M_p & _M_mask); }
80
81 _Bit_reference&
82 operator=(bool __x)
83 {
84 if (__x)
85 *_M_p |= _M_mask;
86 else
87 *_M_p &= ~_M_mask;
88 return *this;
89 }
90
91 _Bit_reference&
92 operator=(const _Bit_reference& __x)
93 { return *this = bool(__x); }
94
95 bool
96 operator==(const _Bit_reference& __x) const
97 { return bool(*this) == bool(__x); }
98
99 bool
100 operator<(const _Bit_reference& __x) const
101 { return !bool(*this) && bool(__x); }
102
103 void
104 flip() { *_M_p ^= _M_mask; }
105 };
106
107 struct _Bit_iterator_base : public iterator<random_access_iterator_tag, bool>
108 {
109 _Bit_type * _M_p;
110 unsigned int _M_offset;
111
112 _Bit_iterator_base(_Bit_type * __x, unsigned int __y)
113 : _M_p(__x), _M_offset(__y) { }
114
115 void
116 _M_bump_up()
117 {
118 if (_M_offset++ == _S_word_bit - 1)
119 {
120 _M_offset = 0;
121 ++_M_p;
122 }
123 }
124
125 void
126 _M_bump_down()
127 {
128 if (_M_offset-- == 0)
129 {
130 _M_offset = _S_word_bit - 1;
131 --_M_p;
132 }
133 }
134
135 void
136 _M_incr(ptrdiff_t __i)
137 {
138 difference_type __n = __i + _M_offset;
139 _M_p += __n / _S_word_bit;
140 __n = __n % _S_word_bit;
141 if (__n < 0)
142 {
143 _M_offset = static_cast<unsigned int>(__n + _S_word_bit);
144 --_M_p;
145 }
146 else
147 _M_offset = static_cast<unsigned int>(__n);
148 }
149
150 bool
151 operator==(const _Bit_iterator_base& __i) const
152 { return _M_p == __i._M_p && _M_offset == __i._M_offset; }
153
154 bool
155 operator<(const _Bit_iterator_base& __i) const
156 {
157 return _M_p < __i._M_p
158 || (_M_p == __i._M_p && _M_offset < __i._M_offset);
159 }
160
161 bool
162 operator!=(const _Bit_iterator_base& __i) const
163 { return !(*this == __i); }
164
165 bool
166 operator>(const _Bit_iterator_base& __i) const
167 { return __i < *this; }
168
169 bool
170 operator<=(const _Bit_iterator_base& __i) const
171 { return !(__i < *this); }
172
173 bool
174 operator>=(const _Bit_iterator_base& __i) const
175 { return !(*this < __i); }
176 };
177
178 inline ptrdiff_t
179 operator-(const _Bit_iterator_base& __x, const _Bit_iterator_base& __y)
180 {
181 return _S_word_bit * (__x._M_p - __y._M_p) + __x._M_offset - __y._M_offset;
182 }
183
184 struct _Bit_iterator : public _Bit_iterator_base
185 {
186 typedef _Bit_reference reference;
187 typedef _Bit_reference* pointer;
188 typedef _Bit_iterator iterator;
189
190 _Bit_iterator() : _Bit_iterator_base(0, 0) { }
191 _Bit_iterator(_Bit_type * __x, unsigned int __y)
192 : _Bit_iterator_base(__x, __y) { }
193
194 reference
195 operator*() const { return reference(_M_p, 1UL << _M_offset); }
196
197 iterator&
198 operator++()
199 {
200 _M_bump_up();
201 return *this;
202 }
203
204 iterator
205 operator++(int)
206 {
207 iterator __tmp = *this;
208 _M_bump_up();
209 return __tmp;
210 }
211
212 iterator&
213 operator--()
214 {
215 _M_bump_down();
216 return *this;
217 }
218
219 iterator
220 operator--(int)
221 {
222 iterator __tmp = *this;
223 _M_bump_down();
224 return __tmp;
225 }
226
227 iterator&
228 operator+=(difference_type __i)
229 {
230 _M_incr(__i);
231 return *this;
232 }
233
234 iterator&
235 operator-=(difference_type __i)
236 {
237 *this += -__i;
238 return *this;
239 }
240
241 iterator
242 operator+(difference_type __i) const
243 {
244 iterator __tmp = *this;
245 return __tmp += __i;
246 }
247
248 iterator
249 operator-(difference_type __i) const
250 {
251 iterator __tmp = *this;
252 return __tmp -= __i;
253 }
254
255 reference
256 operator[](difference_type __i)
257 { return *(*this + __i); }
258 };
259
260 inline _Bit_iterator
261 operator+(ptrdiff_t __n, const _Bit_iterator& __x) { return __x + __n; }
262
263
264 struct _Bit_const_iterator : public _Bit_iterator_base
265 {
266 typedef bool reference;
267 typedef bool const_reference;
268 typedef const bool* pointer;
269 typedef _Bit_const_iterator const_iterator;
270
271 _Bit_const_iterator() : _Bit_iterator_base(0, 0) { }
272 _Bit_const_iterator(_Bit_type * __x, unsigned int __y)
273 : _Bit_iterator_base(__x, __y) { }
274 _Bit_const_iterator(const _Bit_iterator& __x)
275 : _Bit_iterator_base(__x._M_p, __x._M_offset) { }
276
277 const_reference
278 operator*() const
279 { return _Bit_reference(_M_p, 1UL << _M_offset); }
280
281 const_iterator&
282 operator++()
283 {
284 _M_bump_up();
285 return *this;
286 }
287
288 const_iterator
289 operator++(int)
290 {
291 const_iterator __tmp = *this;
292 _M_bump_up();
293 return __tmp;
294 }
295
296 const_iterator&
297 operator--()
298 {
299 _M_bump_down();
300 return *this;
301 }
302
303 const_iterator
304 operator--(int)
305 {
306 const_iterator __tmp = *this;
307 _M_bump_down();
308 return __tmp;
309 }
310
311 const_iterator&
312 operator+=(difference_type __i)
313 {
314 _M_incr(__i);
315 return *this;
316 }
317
318 const_iterator&
319 operator-=(difference_type __i)
320 {
321 *this += -__i;
322 return *this;
323 }
324
325 const_iterator operator+(difference_type __i) const {
326 const_iterator __tmp = *this;
327 return __tmp += __i;
328 }
329
330 const_iterator
331 operator-(difference_type __i) const
332 {
333 const_iterator __tmp = *this;
334 return __tmp -= __i;
335 }
336
337 const_reference
338 operator[](difference_type __i)
339 { return *(*this + __i); }
340 };
341
342 inline _Bit_const_iterator
343 operator+(ptrdiff_t __n, const _Bit_const_iterator& __x)
344 { return __x + __n; }
345
346 template<class _Alloc>
347 class _Bvector_base
348 : public _Alloc::template rebind<_Bit_type>::other
349 {
350 typedef typename _Alloc::template rebind<_Bit_type>::other
351 _Bit_alloc_type;
352
353 public:
354 typedef _Alloc allocator_type;
355
356 allocator_type
357 get_allocator() const
358 { return *static_cast<const _Bit_alloc_type*>(this); }
359
360 _Bvector_base(const allocator_type& __a)
361 : _Bit_alloc_type(__a), _M_start(), _M_finish(), _M_end_of_storage(0) { }
362
363 ~_Bvector_base() { this->_M_deallocate(); }
364
365 protected:
366 _Bit_type*
367 _M_bit_alloc(size_t __n)
368 { return _Bit_alloc_type::allocate((__n + _S_word_bit - 1)
369 / _S_word_bit); }
370
371 void
372 _M_deallocate()
373 {
374 if (_M_start._M_p)
375 _Bit_alloc_type::deallocate(_M_start._M_p,
376 _M_end_of_storage - _M_start._M_p);
377 }
378
379 _Bit_iterator _M_start;
380 _Bit_iterator _M_finish;
381 _Bit_type* _M_end_of_storage;
382 };
383 } // namespace __gnu_norm
384
385 // Declare a partial specialization of vector<T, Alloc>.
386 #include <bits/stl_vector.h>
387
388 namespace __gnu_norm
389 {
390 /**
391 * @brief A specialization of vector for booleans which offers fixed time
392 * access to individual elements in any order.
393 *
394 * Note that vector<bool> does not actually meet the requirements for being
395 * a container. This is because the reference and pointer types are not
396 * really references and pointers to bool. See DR96 for details. @see
397 * vector for function documentation.
398 *
399 * @ingroup Containers
400 * @ingroup Sequences
401 *
402 * In some terminology a %vector can be described as a dynamic
403 * C-style array, it offers fast and efficient access to individual
404 * elements in any order and saves the user from worrying about
405 * memory and size allocation. Subscripting ( @c [] ) access is
406 * also provided as with C-style arrays.
407 */
408 template<typename _Alloc>
409 class vector<bool, _Alloc> : public _Bvector_base<_Alloc>
410 {
411 public:
412 typedef bool value_type;
413 typedef size_t size_type;
414 typedef ptrdiff_t difference_type;
415 typedef _Bit_reference reference;
416 typedef bool const_reference;
417 typedef _Bit_reference* pointer;
418 typedef const bool* const_pointer;
419
420 typedef _Bit_iterator iterator;
421 typedef _Bit_const_iterator const_iterator;
422
423 typedef std::reverse_iterator<const_iterator> const_reverse_iterator;
424 typedef std::reverse_iterator<iterator> reverse_iterator;
425
426 typedef typename _Bvector_base<_Alloc>::allocator_type allocator_type;
427
428 allocator_type get_allocator() const
429 { return _Bvector_base<_Alloc>::get_allocator(); }
430
431 protected:
432 using _Bvector_base<_Alloc>::_M_bit_alloc;
433 using _Bvector_base<_Alloc>::_M_deallocate;
434 using _Bvector_base<_Alloc>::_M_start;
435 using _Bvector_base<_Alloc>::_M_finish;
436 using _Bvector_base<_Alloc>::_M_end_of_storage;
437
438 protected:
439 void _M_initialize(size_type __n)
440 {
441 _Bit_type* __q = this->_M_bit_alloc(__n);
442 this->_M_end_of_storage = __q + (__n + _S_word_bit - 1) / _S_word_bit;
443 this->_M_start = iterator(__q, 0);
444 this->_M_finish = this->_M_start + difference_type(__n);
445 }
446
447 void _M_insert_aux(iterator __position, bool __x)
448 {
449 if (this->_M_finish._M_p != this->_M_end_of_storage)
450 {
451 std::copy_backward(__position, this->_M_finish, this->_M_finish + 1);
452 *__position = __x;
453 ++this->_M_finish;
454 }
455 else
456 {
457 const size_type __len = size() ? 2 * size()
458 : static_cast<size_type>(_S_word_bit);
459 _Bit_type * __q = this->_M_bit_alloc(__len);
460 iterator __i = std::copy(begin(), __position, iterator(__q, 0));
461 *__i++ = __x;
462 this->_M_finish = std::copy(__position, end(), __i);
463 this->_M_deallocate();
464 this->_M_end_of_storage = __q + (__len + _S_word_bit - 1)
465 / _S_word_bit;
466 this->_M_start = iterator(__q, 0);
467 }
468 }
469
470 template<class _InputIterator>
471 void _M_initialize_range(_InputIterator __first, _InputIterator __last,
472 input_iterator_tag)
473 {
474 this->_M_start = iterator();
475 this->_M_finish = iterator();
476 this->_M_end_of_storage = 0;
477 for ( ; __first != __last; ++__first)
478 push_back(*__first);
479 }
480
481 template<class _ForwardIterator>
482 void _M_initialize_range(_ForwardIterator __first, _ForwardIterator __last,
483 forward_iterator_tag)
484 {
485 const size_type __n = std::distance(__first, __last);
486 _M_initialize(__n);
487 std::copy(__first, __last, this->_M_start);
488 }
489
490 template<class _InputIterator>
491 void _M_insert_range(iterator __pos,
492 _InputIterator __first, _InputIterator __last,
493 input_iterator_tag)
494 {
495 for ( ; __first != __last; ++__first)
496 {
497 __pos = insert(__pos, *__first);
498 ++__pos;
499 }
500 }
501
502 template<class _ForwardIterator>
503 void _M_insert_range(iterator __position,
504 _ForwardIterator __first, _ForwardIterator __last,
505 forward_iterator_tag)
506 {
507 if (__first != __last)
508 {
509 size_type __n = std::distance(__first, __last);
510 if (capacity() - size() >= __n)
511 {
512 std::copy_backward(__position, end(),
513 this->_M_finish + difference_type(__n));
514 std::copy(__first, __last, __position);
515 this->_M_finish += difference_type(__n);
516 }
517 else
518 {
519 const size_type __len = size() + std::max(size(), __n);
520 _Bit_type * __q = this->_M_bit_alloc(__len);
521 iterator __i = std::copy(begin(), __position, iterator(__q, 0));
522 __i = std::copy(__first, __last, __i);
523 this->_M_finish = std::copy(__position, end(), __i);
524 this->_M_deallocate();
525 this->_M_end_of_storage = __q + (__len + _S_word_bit - 1)
526 / _S_word_bit;
527 this->_M_start = iterator(__q, 0);
528 }
529 }
530 }
531
532 public:
533 iterator begin()
534 { return this->_M_start; }
535
536 const_iterator begin() const
537 { return this->_M_start; }
538
539 iterator end()
540 { return this->_M_finish; }
541
542 const_iterator end() const
543 { return this->_M_finish; }
544
545 reverse_iterator rbegin()
546 { return reverse_iterator(end()); }
547
548 const_reverse_iterator rbegin() const
549 { return const_reverse_iterator(end()); }
550
551 reverse_iterator rend()
552 { return reverse_iterator(begin()); }
553
554 const_reverse_iterator rend() const
555 { return const_reverse_iterator(begin()); }
556
557 size_type size() const
558 { return size_type(end() - begin()); }
559
560 size_type max_size() const
561 { return size_type(-1); }
562
563 size_type capacity() const
564 { return size_type(const_iterator(this->_M_end_of_storage, 0)
565 - begin()); }
566 bool empty() const
567 { return begin() == end(); }
568
569 reference operator[](size_type __n)
570 { return *(begin() + difference_type(__n)); }
571
572 const_reference operator[](size_type __n) const
573 { return *(begin() + difference_type(__n)); }
574
575 void _M_range_check(size_type __n) const
576 {
577 if (__n >= this->size())
578 __throw_out_of_range(__N("vector<bool>::_M_range_check"));
579 }
580
581 reference at(size_type __n)
582 { _M_range_check(__n); return (*this)[__n]; }
583
584 const_reference at(size_type __n) const
585 { _M_range_check(__n); return (*this)[__n]; }
586
587 explicit vector(const allocator_type& __a = allocator_type())
588 : _Bvector_base<_Alloc>(__a) { }
589
590 vector(size_type __n, bool __value,
591 const allocator_type& __a = allocator_type())
592 : _Bvector_base<_Alloc>(__a)
593 {
594 _M_initialize(__n);
595 std::fill(this->_M_start._M_p, this->_M_end_of_storage, __value ? ~0 : 0);
596 }
597
598 explicit vector(size_type __n)
599 : _Bvector_base<_Alloc>(allocator_type())
600 {
601 _M_initialize(__n);
602 std::fill(this->_M_start._M_p, this->_M_end_of_storage, 0);
603 }
604
605 vector(const vector& __x) : _Bvector_base<_Alloc>(__x.get_allocator())
606 {
607 _M_initialize(__x.size());
608 std::copy(__x.begin(), __x.end(), this->_M_start);
609 }
610
611 // Check whether it's an integral type. If so, it's not an iterator.
612
613 template<class _Integer>
614 void _M_initialize_dispatch(_Integer __n, _Integer __x, __true_type)
615 {
616 _M_initialize(__n);
617 std::fill(this->_M_start._M_p, this->_M_end_of_storage, __x ? ~0 : 0);
618 }
619
620 template<class _InputIterator>
621 void _M_initialize_dispatch(_InputIterator __first, _InputIterator __last,
622 __false_type)
623 { _M_initialize_range(__first, __last, std::__iterator_category(__first)); }
624
625 template<class _InputIterator>
626 vector(_InputIterator __first, _InputIterator __last,
627 const allocator_type& __a = allocator_type())
628 : _Bvector_base<_Alloc>(__a)
629 {
630 typedef typename _Is_integer<_InputIterator>::_Integral _Integral;
631 _M_initialize_dispatch(__first, __last, _Integral());
632 }
633
634 ~vector() { }
635
636 vector& operator=(const vector& __x)
637 {
638 if (&__x == this)
639 return *this;
640 if (__x.size() > capacity())
641 {
642 this->_M_deallocate();
643 _M_initialize(__x.size());
644 }
645 std::copy(__x.begin(), __x.end(), begin());
646 this->_M_finish = begin() + difference_type(__x.size());
647 return *this;
648 }
649
650 // assign(), a generalized assignment member function. Two
651 // versions: one that takes a count, and one that takes a range.
652 // The range version is a member template, so we dispatch on whether
653 // or not the type is an integer.
654
655 void _M_fill_assign(size_t __n, bool __x)
656 {
657 if (__n > size())
658 {
659 std::fill(this->_M_start._M_p, this->_M_end_of_storage, __x ? ~0 : 0);
660 insert(end(), __n - size(), __x);
661 }
662 else
663 {
664 erase(begin() + __n, end());
665 std::fill(this->_M_start._M_p, this->_M_end_of_storage, __x ? ~0 : 0);
666 }
667 }
668
669 void assign(size_t __n, bool __x)
670 { _M_fill_assign(__n, __x); }
671
672 template<class _InputIterator>
673 void assign(_InputIterator __first, _InputIterator __last)
674 {
675 typedef typename _Is_integer<_InputIterator>::_Integral _Integral;
676 _M_assign_dispatch(__first, __last, _Integral());
677 }
678
679 template<class _Integer>
680 void _M_assign_dispatch(_Integer __n, _Integer __val, __true_type)
681 { _M_fill_assign((size_t) __n, (bool) __val); }
682
683 template<class _InputIterator>
684 void _M_assign_dispatch(_InputIterator __first, _InputIterator __last,
685 __false_type)
686 { _M_assign_aux(__first, __last, std::__iterator_category(__first)); }
687
688 template<class _InputIterator>
689 void _M_assign_aux(_InputIterator __first, _InputIterator __last,
690 input_iterator_tag)
691 {
692 iterator __cur = begin();
693 for ( ; __first != __last && __cur != end(); ++__cur, ++__first)
694 *__cur = *__first;
695 if (__first == __last)
696 erase(__cur, end());
697 else
698 insert(end(), __first, __last);
699 }
700
701 template<class _ForwardIterator>
702 void _M_assign_aux(_ForwardIterator __first, _ForwardIterator __last,
703 forward_iterator_tag)
704 {
705 const size_type __len = std::distance(__first, __last);
706 if (__len < size())
707 erase(std::copy(__first, __last, begin()), end());
708 else
709 {
710 _ForwardIterator __mid = __first;
711 std::advance(__mid, size());
712 std::copy(__first, __mid, begin());
713 insert(end(), __mid, __last);
714 }
715 }
716
717 void reserve(size_type __n)
718 {
719 if (__n > this->max_size())
720 __throw_length_error(__N("vector::reserve"));
721 if (this->capacity() < __n)
722 {
723 _Bit_type* __q = this->_M_bit_alloc(__n);
724 this->_M_finish = std::copy(begin(), end(), iterator(__q, 0));
725 this->_M_deallocate();
726 this->_M_start = iterator(__q, 0);
727 this->_M_end_of_storage = __q + (__n + _S_word_bit - 1) / _S_word_bit;
728 }
729 }
730
731 reference front()
732 { return *begin(); }
733
734 const_reference front() const
735 { return *begin(); }
736
737 reference back()
738 { return *(end() - 1); }
739
740 const_reference back() const
741 { return *(end() - 1); }
742
743 void push_back(bool __x)
744 {
745 if (this->_M_finish._M_p != this->_M_end_of_storage)
746 *this->_M_finish++ = __x;
747 else
748 _M_insert_aux(end(), __x);
749 }
750
751 void swap(vector<bool, _Alloc>& __x)
752 {
753 std::swap(this->_M_start, __x._M_start);
754 std::swap(this->_M_finish, __x._M_finish);
755 std::swap(this->_M_end_of_storage, __x._M_end_of_storage);
756 }
757
758 // [23.2.5]/1, third-to-last entry in synopsis listing
759 static void swap(reference __x, reference __y)
760 {
761 bool __tmp = __x;
762 __x = __y;
763 __y = __tmp;
764 }
765
766 iterator insert(iterator __position, bool __x = bool())
767 {
768 const difference_type __n = __position - begin();
769 if (this->_M_finish._M_p != this->_M_end_of_storage
770 && __position == end())
771 *this->_M_finish++ = __x;
772 else
773 _M_insert_aux(__position, __x);
774 return begin() + __n;
775 }
776
777 // Check whether it's an integral type. If so, it's not an iterator.
778
779 template<class _Integer>
780 void _M_insert_dispatch(iterator __pos, _Integer __n, _Integer __x,
781 __true_type)
782 { _M_fill_insert(__pos, __n, __x); }
783
784 template<class _InputIterator>
785 void _M_insert_dispatch(iterator __pos,
786 _InputIterator __first, _InputIterator __last,
787 __false_type)
788 { _M_insert_range(__pos, __first, __last,
789 std::__iterator_category(__first)); }
790
791 template<class _InputIterator>
792 void insert(iterator __position,
793 _InputIterator __first, _InputIterator __last)
794 {
795 typedef typename _Is_integer<_InputIterator>::_Integral _Integral;
796 _M_insert_dispatch(__position, __first, __last, _Integral());
797 }
798
799 void _M_fill_insert(iterator __position, size_type __n, bool __x)
800 {
801 if (__n == 0)
802 return;
803 if (capacity() - size() >= __n)
804 {
805 std::copy_backward(__position, end(),
806 this->_M_finish + difference_type(__n));
807 std::fill(__position, __position + difference_type(__n), __x);
808 this->_M_finish += difference_type(__n);
809 }
810 else
811 {
812 const size_type __len = size() + std::max(size(), __n);
813 _Bit_type * __q = this->_M_bit_alloc(__len);
814 iterator __i = std::copy(begin(), __position, iterator(__q, 0));
815 std::fill_n(__i, __n, __x);
816 this->_M_finish = std::copy(__position, end(),
817 __i + difference_type(__n));
818 this->_M_deallocate();
819 this->_M_end_of_storage = __q + (__len + _S_word_bit - 1)
820 / _S_word_bit;
821 this->_M_start = iterator(__q, 0);
822 }
823 }
824
825 void insert(iterator __position, size_type __n, bool __x)
826 { _M_fill_insert(__position, __n, __x); }
827
828 void pop_back()
829 { --this->_M_finish; }
830
831 iterator erase(iterator __position)
832 {
833 if (__position + 1 != end())
834 std::copy(__position + 1, end(), __position);
835 --this->_M_finish;
836 return __position;
837 }
838
839 iterator erase(iterator __first, iterator __last)
840 {
841 this->_M_finish = std::copy(__last, end(), __first);
842 return __first;
843 }
844
845 void resize(size_type __new_size, bool __x = bool())
846 {
847 if (__new_size < size())
848 erase(begin() + difference_type(__new_size), end());
849 else
850 insert(end(), __new_size - size(), __x);
851 }
852
853 void flip()
854 {
855 for (_Bit_type * __p = this->_M_start._M_p;
856 __p != this->_M_end_of_storage; ++__p)
857 *__p = ~*__p;
858 }
859
860 void clear()
861 { erase(begin(), end()); }
862 };
863 } // namespace __gnu_norm
864
865 #endif