FSF GCC merge 02/23/03
[official-gcc.git] / libstdc++-v3 / include / bits / stl_bvector.h
blobd334a729d23b9d5b1d6e113b86c10eb3a7c4da9d
1 // bit_vector and vector<bool> specialization -*- C++ -*-
3 // Copyright (C) 2001, 2002, 2003 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.
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 // 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.
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.
32 * Copyright (c) 1994
33 * Hewlett-Packard Company
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.
44 * Copyright (c) 1996-1999
45 * Silicon Graphics Computer Systems, Inc.
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.
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.
61 #ifndef __GLIBCPP_INTERNAL_BVECTOR_H
62 #define __GLIBCPP_INTERNAL_BVECTOR_H
64 namespace std
66 typedef unsigned long _Bit_type;
67 enum { _M_word_bit = int(CHAR_BIT * sizeof(_Bit_type)) };
69 struct _Bit_reference {
71 _Bit_type * _M_p;
72 _Bit_type _M_mask;
73 _Bit_reference(_Bit_type * __x, _Bit_type __y)
74 : _M_p(__x), _M_mask(__y) {}
76 public:
77 _Bit_reference() : _M_p(0), _M_mask(0) {}
78 operator bool() const { return !!(*_M_p & _M_mask); }
79 _Bit_reference& operator=(bool __x)
81 if (__x) *_M_p |= _M_mask;
82 else *_M_p &= ~_M_mask;
83 return *this;
85 _Bit_reference& operator=(const _Bit_reference& __x)
86 { return *this = bool(__x); }
87 bool operator==(const _Bit_reference& __x) const
88 { return bool(*this) == bool(__x); }
89 bool operator<(const _Bit_reference& __x) const
90 { return !bool(*this) && bool(__x); }
91 void flip() { *_M_p ^= _M_mask; }
94 struct _Bit_iterator_base : public iterator<random_access_iterator_tag, bool>
96 _Bit_type * _M_p;
97 unsigned int _M_offset;
99 _Bit_iterator_base(_Bit_type * __x, unsigned int __y)
100 : _M_p(__x), _M_offset(__y) {}
102 void _M_bump_up() {
103 if (_M_offset++ == _M_word_bit - 1) {
104 _M_offset = 0;
105 ++_M_p;
108 void _M_bump_down() {
109 if (_M_offset-- == 0) {
110 _M_offset = _M_word_bit - 1;
111 --_M_p;
115 void _M_incr(ptrdiff_t __i) {
116 difference_type __n = __i + _M_offset;
117 _M_p += __n / _M_word_bit;
118 __n = __n % _M_word_bit;
119 if (__n < 0) {
120 _M_offset = (unsigned int) __n + _M_word_bit;
121 --_M_p;
122 } else
123 _M_offset = (unsigned int) __n;
126 bool operator==(const _Bit_iterator_base& __i) const {
127 return _M_p == __i._M_p && _M_offset == __i._M_offset;
129 bool operator<(const _Bit_iterator_base& __i) const {
130 return _M_p < __i._M_p || (_M_p == __i._M_p && _M_offset < __i._M_offset);
132 bool operator!=(const _Bit_iterator_base& __i) const {
133 return !(*this == __i);
135 bool operator>(const _Bit_iterator_base& __i) const {
136 return __i < *this;
138 bool operator<=(const _Bit_iterator_base& __i) const {
139 return !(__i < *this);
141 bool operator>=(const _Bit_iterator_base& __i) const {
142 return !(*this < __i);
146 inline ptrdiff_t
147 operator-(const _Bit_iterator_base& __x, const _Bit_iterator_base& __y) {
148 return _M_word_bit * (__x._M_p - __y._M_p) + __x._M_offset - __y._M_offset;
152 struct _Bit_iterator : public _Bit_iterator_base
154 typedef _Bit_reference reference;
155 typedef _Bit_reference* pointer;
156 typedef _Bit_iterator iterator;
158 _Bit_iterator() : _Bit_iterator_base(0, 0) {}
159 _Bit_iterator(_Bit_type * __x, unsigned int __y)
160 : _Bit_iterator_base(__x, __y) {}
162 reference operator*() const { return reference(_M_p, 1UL << _M_offset); }
163 iterator& operator++() {
164 _M_bump_up();
165 return *this;
167 iterator operator++(int) {
168 iterator __tmp = *this;
169 _M_bump_up();
170 return __tmp;
172 iterator& operator--() {
173 _M_bump_down();
174 return *this;
176 iterator operator--(int) {
177 iterator __tmp = *this;
178 _M_bump_down();
179 return __tmp;
181 iterator& operator+=(difference_type __i) {
182 _M_incr(__i);
183 return *this;
185 iterator& operator-=(difference_type __i) {
186 *this += -__i;
187 return *this;
189 iterator operator+(difference_type __i) const {
190 iterator __tmp = *this;
191 return __tmp += __i;
193 iterator operator-(difference_type __i) const {
194 iterator __tmp = *this;
195 return __tmp -= __i;
198 reference operator[](difference_type __i) { return *(*this + __i); }
201 inline _Bit_iterator
202 operator+(ptrdiff_t __n, const _Bit_iterator& __x) { return __x + __n; }
205 struct _Bit_const_iterator : public _Bit_iterator_base
207 typedef bool reference;
208 typedef bool const_reference;
209 typedef const bool* pointer;
210 typedef _Bit_const_iterator const_iterator;
212 _Bit_const_iterator() : _Bit_iterator_base(0, 0) {}
213 _Bit_const_iterator(_Bit_type * __x, unsigned int __y)
214 : _Bit_iterator_base(__x, __y) {}
215 _Bit_const_iterator(const _Bit_iterator& __x)
216 : _Bit_iterator_base(__x._M_p, __x._M_offset) {}
218 const_reference operator*() const {
219 return _Bit_reference(_M_p, 1UL << _M_offset);
221 const_iterator& operator++() {
222 _M_bump_up();
223 return *this;
225 const_iterator operator++(int) {
226 const_iterator __tmp = *this;
227 _M_bump_up();
228 return __tmp;
230 const_iterator& operator--() {
231 _M_bump_down();
232 return *this;
234 const_iterator operator--(int) {
235 const_iterator __tmp = *this;
236 _M_bump_down();
237 return __tmp;
239 const_iterator& operator+=(difference_type __i) {
240 _M_incr(__i);
241 return *this;
243 const_iterator& operator-=(difference_type __i) {
244 *this += -__i;
245 return *this;
247 const_iterator operator+(difference_type __i) const {
248 const_iterator __tmp = *this;
249 return __tmp += __i;
251 const_iterator operator-(difference_type __i) const {
252 const_iterator __tmp = *this;
253 return __tmp -= __i;
255 const_reference operator[](difference_type __i) {
256 return *(*this + __i);
260 inline _Bit_const_iterator
261 operator+(ptrdiff_t __n, const _Bit_const_iterator& __x) { return __x + __n; }
264 // Bit-vector base class, which encapsulates the difference between
265 // old SGI-style allocators and standard-conforming allocators.
267 // Base class for ordinary allocators.
268 template <class _Allocator, bool __is_static>
269 class _Bvector_alloc_base {
270 public:
271 typedef typename _Alloc_traits<bool, _Allocator>::allocator_type
272 allocator_type;
273 allocator_type get_allocator() const { return _M_data_allocator; }
275 _Bvector_alloc_base(const allocator_type& __a)
276 : _M_data_allocator(__a), _M_start(), _M_finish(), _M_end_of_storage(0) {}
278 protected:
279 _Bit_type * _M_bit_alloc(size_t __n)
280 { return _M_data_allocator.allocate((__n + _M_word_bit - 1)/_M_word_bit); }
281 void _M_deallocate() {
282 if (_M_start._M_p)
283 _M_data_allocator.deallocate(_M_start._M_p,
284 _M_end_of_storage - _M_start._M_p);
287 typename _Alloc_traits<_Bit_type, _Allocator>::allocator_type
288 _M_data_allocator;
289 _Bit_iterator _M_start;
290 _Bit_iterator _M_finish;
291 _Bit_type * _M_end_of_storage;
294 // Specialization for instanceless allocators.
295 template <class _Allocator>
296 class _Bvector_alloc_base<_Allocator, true> {
297 public:
298 typedef typename _Alloc_traits<bool, _Allocator>::allocator_type
299 allocator_type;
300 allocator_type get_allocator() const { return allocator_type(); }
302 _Bvector_alloc_base(const allocator_type&)
303 : _M_start(), _M_finish(), _M_end_of_storage(0) {}
305 protected:
306 typedef typename _Alloc_traits<_Bit_type, _Allocator>::_Alloc_type
307 _Alloc_type;
309 _Bit_type * _M_bit_alloc(size_t __n)
310 { return _Alloc_type::allocate((__n + _M_word_bit - 1)/_M_word_bit); }
311 void _M_deallocate() {
312 if (_M_start._M_p)
313 _Alloc_type::deallocate(_M_start._M_p,
314 _M_end_of_storage - _M_start._M_p);
317 _Bit_iterator _M_start;
318 _Bit_iterator _M_finish;
319 _Bit_type * _M_end_of_storage;
322 template <class _Alloc>
323 class _Bvector_base
324 : public _Bvector_alloc_base<_Alloc,
325 _Alloc_traits<bool, _Alloc>::_S_instanceless>
327 typedef _Bvector_alloc_base<_Alloc,
328 _Alloc_traits<bool, _Alloc>::_S_instanceless>
329 _Base;
330 public:
331 typedef typename _Base::allocator_type allocator_type;
333 _Bvector_base(const allocator_type& __a) : _Base(__a) {}
334 ~_Bvector_base() { _Base::_M_deallocate(); }
337 } // namespace std
339 // Declare a partial specialization of vector<T, Alloc>.
340 #include <bits/stl_vector.h>
341 namespace std
344 template <typename _Alloc>
345 class vector<bool, _Alloc> : public _Bvector_base<_Alloc>
347 public:
348 typedef bool value_type;
349 typedef size_t size_type;
350 typedef ptrdiff_t difference_type;
351 typedef _Bit_reference reference;
352 typedef bool const_reference;
353 typedef _Bit_reference* pointer;
354 typedef const bool* const_pointer;
356 typedef _Bit_iterator iterator;
357 typedef _Bit_const_iterator const_iterator;
359 typedef std::reverse_iterator<const_iterator> const_reverse_iterator;
360 typedef std::reverse_iterator<iterator> reverse_iterator;
362 typedef typename _Bvector_base<_Alloc>::allocator_type allocator_type;
363 allocator_type get_allocator() const {
364 return _Bvector_base<_Alloc>::get_allocator();
367 protected:
368 using _Bvector_base<_Alloc>::_M_bit_alloc;
369 using _Bvector_base<_Alloc>::_M_deallocate;
370 using _Bvector_base<_Alloc>::_M_start;
371 using _Bvector_base<_Alloc>::_M_finish;
372 using _Bvector_base<_Alloc>::_M_end_of_storage;
374 protected:
375 void _M_initialize(size_type __n) {
376 _Bit_type * __q = _M_bit_alloc(__n);
377 this->_M_end_of_storage = __q + (__n + _M_word_bit - 1)/_M_word_bit;
378 this->_M_start = iterator(__q, 0);
379 this->_M_finish = this->_M_start + difference_type(__n);
381 void _M_insert_aux(iterator __position, bool __x) {
382 if (this->_M_finish._M_p != this->_M_end_of_storage) {
383 copy_backward(__position, this->_M_finish, this->_M_finish + 1);
384 *__position = __x;
385 ++this->_M_finish;
387 else {
388 size_type __len = size()
389 ? 2 * size() : static_cast<size_type>(_M_word_bit);
390 _Bit_type * __q = _M_bit_alloc(__len);
391 iterator __i = copy(begin(), __position, iterator(__q, 0));
392 *__i++ = __x;
393 this->_M_finish = copy(__position, end(), __i);
394 _M_deallocate();
395 this->_M_end_of_storage = __q + (__len + _M_word_bit - 1)/_M_word_bit;
396 this->_M_start = iterator(__q, 0);
400 template <class _InputIterator>
401 void _M_initialize_range(_InputIterator __first, _InputIterator __last,
402 input_iterator_tag) {
403 this->_M_start = iterator();
404 this->_M_finish = iterator();
405 this->_M_end_of_storage = 0;
406 for ( ; __first != __last; ++__first)
407 push_back(*__first);
410 template <class _ForwardIterator>
411 void _M_initialize_range(_ForwardIterator __first, _ForwardIterator __last,
412 forward_iterator_tag) {
413 size_type __n = std::distance(__first, __last);
414 _M_initialize(__n);
415 copy(__first, __last, this->_M_start);
418 template <class _InputIterator>
419 void _M_insert_range(iterator __pos,
420 _InputIterator __first, _InputIterator __last,
421 input_iterator_tag) {
422 for ( ; __first != __last; ++__first) {
423 __pos = insert(__pos, *__first);
424 ++__pos;
428 template <class _ForwardIterator>
429 void _M_insert_range(iterator __position,
430 _ForwardIterator __first, _ForwardIterator __last,
431 forward_iterator_tag) {
432 if (__first != __last) {
433 size_type __n = std::distance(__first, __last);
434 if (capacity() - size() >= __n) {
435 copy_backward(__position, end(),
436 this->_M_finish + difference_type(__n));
437 copy(__first, __last, __position);
438 this->_M_finish += difference_type(__n);
440 else {
441 size_type __len = size() + std::max(size(), __n);
442 _Bit_type * __q = _M_bit_alloc(__len);
443 iterator __i = copy(begin(), __position, iterator(__q, 0));
444 __i = copy(__first, __last, __i);
445 this->_M_finish = copy(__position, end(), __i);
446 _M_deallocate();
447 this->_M_end_of_storage
448 = __q + (__len + _M_word_bit - 1)/_M_word_bit;
449 this->_M_start = iterator(__q, 0);
454 public:
455 iterator begin() { return this->_M_start; }
456 const_iterator begin() const { return this->_M_start; }
457 iterator end() { return this->_M_finish; }
458 const_iterator end() const { return this->_M_finish; }
460 reverse_iterator rbegin() { return reverse_iterator(end()); }
461 const_reverse_iterator rbegin() const {
462 return const_reverse_iterator(end());
464 reverse_iterator rend() { return reverse_iterator(begin()); }
465 const_reverse_iterator rend() const {
466 return const_reverse_iterator(begin());
469 size_type size() const { return size_type(end() - begin()); }
470 size_type max_size() const { return size_type(-1); }
471 size_type capacity() const {
472 return size_type(const_iterator(this->_M_end_of_storage, 0) - begin());
474 bool empty() const { return begin() == end(); }
476 reference operator[](size_type __n)
477 { return *(begin() + difference_type(__n)); }
478 const_reference operator[](size_type __n) const
479 { return *(begin() + difference_type(__n)); }
481 void _M_range_check(size_type __n) const {
482 if (__n >= this->size())
483 __throw_out_of_range("vector<bool>");
486 reference at(size_type __n)
487 { _M_range_check(__n); return (*this)[__n]; }
488 const_reference at(size_type __n) const
489 { _M_range_check(__n); return (*this)[__n]; }
491 explicit vector(const allocator_type& __a = allocator_type())
492 : _Bvector_base<_Alloc>(__a) {}
494 vector(size_type __n, bool __value,
495 const allocator_type& __a = allocator_type())
496 : _Bvector_base<_Alloc>(__a)
498 _M_initialize(__n);
499 fill(this->_M_start._M_p, this->_M_end_of_storage, __value ? ~0 : 0);
502 explicit vector(size_type __n)
503 : _Bvector_base<_Alloc>(allocator_type())
505 _M_initialize(__n);
506 fill(this->_M_start._M_p, this->_M_end_of_storage, 0);
509 vector(const vector& __x) : _Bvector_base<_Alloc>(__x.get_allocator()) {
510 _M_initialize(__x.size());
511 copy(__x.begin(), __x.end(), this->_M_start);
514 // Check whether it's an integral type. If so, it's not an iterator.
516 template <class _Integer>
517 void _M_initialize_dispatch(_Integer __n, _Integer __x, __true_type) {
518 _M_initialize(__n);
519 fill(this->_M_start._M_p, this->_M_end_of_storage, __x ? ~0 : 0);
522 template <class _InputIterator>
523 void _M_initialize_dispatch(_InputIterator __first, _InputIterator __last,
524 __false_type) {
525 _M_initialize_range(__first, __last, __iterator_category(__first));
528 template <class _InputIterator>
529 vector(_InputIterator __first, _InputIterator __last,
530 const allocator_type& __a = allocator_type())
531 : _Bvector_base<_Alloc>(__a)
533 typedef typename _Is_integer<_InputIterator>::_Integral _Integral;
534 _M_initialize_dispatch(__first, __last, _Integral());
537 ~vector() { }
539 vector& operator=(const vector& __x) {
540 if (&__x == this) return *this;
541 if (__x.size() > capacity()) {
542 _M_deallocate();
543 _M_initialize(__x.size());
545 copy(__x.begin(), __x.end(), begin());
546 this->_M_finish = begin() + difference_type(__x.size());
547 return *this;
550 // assign(), a generalized assignment member function. Two
551 // versions: one that takes a count, and one that takes a range.
552 // The range version is a member template, so we dispatch on whether
553 // or not the type is an integer.
555 void _M_fill_assign(size_t __n, bool __x) {
556 if (__n > size()) {
557 fill(this->_M_start._M_p, this->_M_end_of_storage, __x ? ~0 : 0);
558 insert(end(), __n - size(), __x);
560 else {
561 erase(begin() + __n, end());
562 fill(this->_M_start._M_p, this->_M_end_of_storage, __x ? ~0 : 0);
566 void assign(size_t __n, bool __x) { _M_fill_assign(__n, __x); }
568 template <class _InputIterator>
569 void assign(_InputIterator __first, _InputIterator __last) {
570 typedef typename _Is_integer<_InputIterator>::_Integral _Integral;
571 _M_assign_dispatch(__first, __last, _Integral());
574 template <class _Integer>
575 void _M_assign_dispatch(_Integer __n, _Integer __val, __true_type)
576 { _M_fill_assign((size_t) __n, (bool) __val); }
578 template <class _InputIter>
579 void _M_assign_dispatch(_InputIter __first, _InputIter __last, __false_type)
580 { _M_assign_aux(__first, __last, __iterator_category(__first)); }
582 template <class _InputIterator>
583 void _M_assign_aux(_InputIterator __first, _InputIterator __last,
584 input_iterator_tag) {
585 iterator __cur = begin();
586 for ( ; __first != __last && __cur != end(); ++__cur, ++__first)
587 *__cur = *__first;
588 if (__first == __last)
589 erase(__cur, end());
590 else
591 insert(end(), __first, __last);
594 template <class _ForwardIterator>
595 void _M_assign_aux(_ForwardIterator __first, _ForwardIterator __last,
596 forward_iterator_tag) {
597 size_type __len = std::distance(__first, __last);
598 if (__len < size())
599 erase(copy(__first, __last, begin()), end());
600 else {
601 _ForwardIterator __mid = __first;
602 advance(__mid, size());
603 copy(__first, __mid, begin());
604 insert(end(), __mid, __last);
608 void reserve(size_type __n) {
609 if (__n > this->max_size())
610 __throw_length_error("vector::reserve");
611 if (this->capacity() < __n) {
612 _Bit_type * __q = _M_bit_alloc(__n);
613 this->_M_finish = copy(begin(), end(), iterator(__q, 0));
614 _M_deallocate();
615 this->_M_start = iterator(__q, 0);
616 this->_M_end_of_storage = __q + (__n + _M_word_bit - 1)/_M_word_bit;
620 reference front() { return *begin(); }
621 const_reference front() const { return *begin(); }
622 reference back() { return *(end() - 1); }
623 const_reference back() const { return *(end() - 1); }
624 void push_back(bool __x) {
625 if (this->_M_finish._M_p != this->_M_end_of_storage)
626 *this->_M_finish++ = __x;
627 else
628 _M_insert_aux(end(), __x);
630 void swap(vector<bool, _Alloc>& __x) {
631 std::swap(this->_M_start, __x._M_start);
632 std::swap(this->_M_finish, __x._M_finish);
633 std::swap(this->_M_end_of_storage, __x._M_end_of_storage);
636 // [23.2.5]/1, third-to-last entry in synopsis listing
637 static void swap(reference __x, reference __y) {
638 bool __tmp = __x;
639 __x = __y;
640 __y = __tmp;
643 iterator insert(iterator __position, bool __x = bool()) {
644 difference_type __n = __position - begin();
645 if (this->_M_finish._M_p != this->_M_end_of_storage
646 && __position == end())
647 *this->_M_finish++ = __x;
648 else
649 _M_insert_aux(__position, __x);
650 return begin() + __n;
653 // Check whether it's an integral type. If so, it's not an iterator.
655 template <class _Integer>
656 void _M_insert_dispatch(iterator __pos, _Integer __n, _Integer __x,
657 __true_type) {
658 _M_fill_insert(__pos, __n, __x);
661 template <class _InputIterator>
662 void _M_insert_dispatch(iterator __pos,
663 _InputIterator __first, _InputIterator __last,
664 __false_type) {
665 _M_insert_range(__pos, __first, __last, __iterator_category(__first));
668 template <class _InputIterator>
669 void insert(iterator __position,
670 _InputIterator __first, _InputIterator __last) {
671 typedef typename _Is_integer<_InputIterator>::_Integral _Integral;
672 _M_insert_dispatch(__position, __first, __last, _Integral());
675 void _M_fill_insert(iterator __position, size_type __n, bool __x) {
676 if (__n == 0) return;
677 if (capacity() - size() >= __n) {
678 copy_backward(__position, end(),
679 this->_M_finish + difference_type(__n));
680 fill(__position, __position + difference_type(__n), __x);
681 this->_M_finish += difference_type(__n);
683 else {
684 size_type __len = size() + std::max(size(), __n);
685 _Bit_type * __q = _M_bit_alloc(__len);
686 iterator __i = copy(begin(), __position, iterator(__q, 0));
687 fill_n(__i, __n, __x);
688 this->_M_finish = copy(__position, end(), __i + difference_type(__n));
689 _M_deallocate();
690 this->_M_end_of_storage = __q + (__len + _M_word_bit - 1)/_M_word_bit;
691 this->_M_start = iterator(__q, 0);
695 void insert(iterator __position, size_type __n, bool __x) {
696 _M_fill_insert(__position, __n, __x);
699 void pop_back() { --this->_M_finish; }
700 iterator erase(iterator __position) {
701 if (__position + 1 != end())
702 copy(__position + 1, end(), __position);
703 --this->_M_finish;
704 return __position;
706 iterator erase(iterator __first, iterator __last) {
707 this->_M_finish = copy(__last, end(), __first);
708 return __first;
710 void resize(size_type __new_size, bool __x = bool()) {
711 if (__new_size < size())
712 erase(begin() + difference_type(__new_size), end());
713 else
714 insert(end(), __new_size - size(), __x);
716 void flip() {
717 for (_Bit_type * __p = this->_M_start._M_p;
718 __p != this->_M_end_of_storage;
719 ++__p)
720 *__p = ~*__p;
723 void clear() { erase(begin(), end()); }
726 // This typedef is non-standard. It is provided for backward compatibility.
727 typedef vector<bool, __alloc> bit_vector;
729 } // namespace std
731 #endif /* __GLIBCPP_INTERNAL_BVECTOR_H */
733 // Local Variables:
734 // mode:C++
735 // End: