| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230 |
- // TR2 <dynamic_bitset> -*- C++ -*-
- // Copyright (C) 2009-2018 Free Software Foundation, Inc.
- //
- // This file is part of the GNU ISO C++ Library. This library is free
- // software; you can redistribute it and/or modify it under the
- // terms of the GNU General Public License as published by the
- // Free Software Foundation; either version 3, or (at your option)
- // any later version.
- // This library is distributed in the hope that it will be useful,
- // but WITHOUT ANY WARRANTY; without even the implied warranty of
- // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- // GNU General Public License for more details.
- // Under Section 7 of GPL version 3, you are granted additional
- // permissions described in the GCC Runtime Library Exception, version
- // 3.1, as published by the Free Software Foundation.
- // You should have received a copy of the GNU General Public License and
- // a copy of the GCC Runtime Library Exception along with this program;
- // see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
- // <http://www.gnu.org/licenses/>.
- /** @file tr2/dynamic_bitset
- * This is a TR2 C++ Library header.
- */
- #ifndef _GLIBCXX_TR2_DYNAMIC_BITSET
- #define _GLIBCXX_TR2_DYNAMIC_BITSET 1
- #pragma GCC system_header
- #include <limits>
- #include <vector>
- #include <string>
- #include <memory> // For std::allocator
- #include <bits/functexcept.h> // For invalid_argument, out_of_range,
- // overflow_error
- #include <iosfwd>
- #include <bits/cxxabi_forced.h>
- namespace std _GLIBCXX_VISIBILITY(default)
- {
- _GLIBCXX_BEGIN_NAMESPACE_VERSION
- namespace tr2
- {
- /**
- * @defgroup dynamic_bitset Dynamic Bitset.
- * @ingroup extensions
- *
- * @{
- */
- /**
- * Base class, general case.
- *
- * See documentation for dynamic_bitset.
- */
- template<typename _WordT = unsigned long long,
- typename _Alloc = std::allocator<_WordT>>
- struct __dynamic_bitset_base
- {
- static_assert(std::is_unsigned<_WordT>::value, "template argument "
- "_WordT not an unsigned integral type");
- typedef _WordT block_type;
- typedef _Alloc allocator_type;
- typedef size_t size_type;
- static const size_type _S_bits_per_block = __CHAR_BIT__ * sizeof(block_type);
- static const size_type npos = static_cast<size_type>(-1);
- /// 0 is the least significant word.
- std::vector<block_type, allocator_type> _M_w;
- explicit
- __dynamic_bitset_base(const allocator_type& __alloc = allocator_type())
- : _M_w(__alloc)
- { }
- explicit
- __dynamic_bitset_base(__dynamic_bitset_base&& __b)
- { this->_M_w.swap(__b._M_w); }
- explicit
- __dynamic_bitset_base(size_type __nbits, unsigned long long __val = 0ULL,
- const allocator_type& __alloc = allocator_type())
- : _M_w(__nbits / _S_bits_per_block
- + (__nbits % _S_bits_per_block > 0),
- __val, __alloc)
- {
- unsigned long long __mask = ~static_cast<block_type>(0);
- size_t __n = std::min(this->_M_w.size(),
- sizeof(unsigned long long) / sizeof(block_type));
- for (size_t __i = 0; __i < __n; ++__i)
- {
- this->_M_w[__i] = (__val & __mask) >> (__i * _S_bits_per_block);
- __mask <<= _S_bits_per_block;
- }
- }
- void
- _M_assign(const __dynamic_bitset_base& __b)
- { this->_M_w = __b._M_w; }
- void
- _M_swap(__dynamic_bitset_base& __b)
- { this->_M_w.swap(__b._M_w); }
- void
- _M_clear()
- { this->_M_w.clear(); }
- void
- _M_resize(size_t __nbits, bool __value)
- {
- size_t __sz = __nbits / _S_bits_per_block;
- if (__nbits % _S_bits_per_block > 0)
- ++__sz;
- if (__sz != this->_M_w.size())
- {
- block_type __val = 0;
- if (__value)
- __val = std::numeric_limits<block_type>::max();
- this->_M_w.resize(__sz, __val);
- }
- }
- allocator_type
- _M_get_allocator() const
- { return this->_M_w.get_allocator(); }
- static size_type
- _S_whichword(size_type __pos) noexcept
- { return __pos / _S_bits_per_block; }
- static size_type
- _S_whichbyte(size_type __pos) noexcept
- { return (__pos % _S_bits_per_block) / __CHAR_BIT__; }
- static size_type
- _S_whichbit(size_type __pos) noexcept
- { return __pos % _S_bits_per_block; }
- static block_type
- _S_maskbit(size_type __pos) noexcept
- { return (static_cast<block_type>(1)) << _S_whichbit(__pos); }
- block_type&
- _M_getword(size_type __pos)
- { return this->_M_w[_S_whichword(__pos)]; }
- block_type
- _M_getword(size_type __pos) const
- { return this->_M_w[_S_whichword(__pos)]; }
- block_type&
- _M_hiword()
- { return this->_M_w[_M_w.size() - 1]; }
- block_type
- _M_hiword() const
- { return this->_M_w[_M_w.size() - 1]; }
- void
- _M_do_and(const __dynamic_bitset_base& __x)
- {
- if (__x._M_w.size() == this->_M_w.size())
- for (size_t __i = 0; __i < this->_M_w.size(); ++__i)
- this->_M_w[__i] &= __x._M_w[__i];
- else
- return;
- }
- void
- _M_do_or(const __dynamic_bitset_base& __x)
- {
- if (__x._M_w.size() == this->_M_w.size())
- for (size_t __i = 0; __i < this->_M_w.size(); ++__i)
- this->_M_w[__i] |= __x._M_w[__i];
- else
- return;
- }
- void
- _M_do_xor(const __dynamic_bitset_base& __x)
- {
- if (__x._M_w.size() == this->_M_w.size())
- for (size_t __i = 0; __i < this->_M_w.size(); ++__i)
- this->_M_w[__i] ^= __x._M_w[__i];
- else
- return;
- }
- void
- _M_do_dif(const __dynamic_bitset_base& __x)
- {
- if (__x._M_w.size() == this->_M_w.size())
- for (size_t __i = 0; __i < this->_M_w.size(); ++__i)
- this->_M_w[__i] &= ~__x._M_w[__i];
- else
- return;
- }
- void
- _M_do_left_shift(size_t __shift);
- void
- _M_do_right_shift(size_t __shift);
- void
- _M_do_flip()
- {
- for (size_t __i = 0; __i < this->_M_w.size(); ++__i)
- this->_M_w[__i] = ~this->_M_w[__i];
- }
- void
- _M_do_set()
- {
- for (size_t __i = 0; __i < this->_M_w.size(); ++__i)
- this->_M_w[__i] = ~static_cast<block_type>(0);
- }
- void
- _M_do_reset()
- {
- for (size_t __i = 0; __i < this->_M_w.size(); ++__i)
- this->_M_w[__i] = static_cast<block_type>(0);
- }
- bool
- _M_is_equal(const __dynamic_bitset_base& __x) const
- {
- if (__x._M_w.size() == this->_M_w.size())
- {
- for (size_t __i = 0; __i < this->_M_w.size(); ++__i)
- if (this->_M_w[__i] != __x._M_w[__i])
- return false;
- return true;
- }
- else
- return false;
- }
- bool
- _M_is_less(const __dynamic_bitset_base& __x) const
- {
- if (__x._M_w.size() == this->_M_w.size())
- {
- for (size_t __i = this->_M_w.size(); __i > 0; --__i)
- {
- if (this->_M_w[__i-1] < __x._M_w[__i-1])
- return true;
- else if (this->_M_w[__i-1] > __x._M_w[__i-1])
- return false;
- }
- return false;
- }
- else
- return false;
- }
- size_t
- _M_are_all_aux() const
- {
- for (size_t __i = 0; __i < this->_M_w.size() - 1; ++__i)
- if (_M_w[__i] != ~static_cast<block_type>(0))
- return 0;
- return ((this->_M_w.size() - 1) * _S_bits_per_block
- + __builtin_popcountll(this->_M_hiword()));
- }
- bool
- _M_is_any() const
- {
- for (size_t __i = 0; __i < this->_M_w.size(); ++__i)
- if (this->_M_w[__i] != static_cast<block_type>(0))
- return true;
- return false;
- }
- bool
- _M_is_subset_of(const __dynamic_bitset_base& __b)
- {
- if (__b._M_w.size() == this->_M_w.size())
- {
- for (size_t __i = 0; __i < this->_M_w.size(); ++__i)
- if (this->_M_w[__i] != (this->_M_w[__i] | __b._M_w[__i]))
- return false;
- return true;
- }
- else
- return false;
- }
- bool
- _M_is_proper_subset_of(const __dynamic_bitset_base& __b) const
- {
- if (this->is_subset_of(__b))
- {
- if (*this == __b)
- return false;
- else
- return true;
- }
- else
- return false;
- }
- size_t
- _M_do_count() const
- {
- size_t __result = 0;
- for (size_t __i = 0; __i < this->_M_w.size(); ++__i)
- __result += __builtin_popcountll(this->_M_w[__i]);
- return __result;
- }
- size_type
- _M_size() const noexcept
- { return this->_M_w.size(); }
- unsigned long
- _M_do_to_ulong() const;
- unsigned long long
- _M_do_to_ullong() const;
- // find first "on" bit
- size_type
- _M_do_find_first(size_t __not_found) const;
- // find the next "on" bit that follows "prev"
- size_type
- _M_do_find_next(size_t __prev, size_t __not_found) const;
- // do append of block
- void
- _M_do_append_block(block_type __block, size_type __pos)
- {
- size_t __offset = __pos % _S_bits_per_block;
- if (__offset == 0)
- this->_M_w.push_back(__block);
- else
- {
- this->_M_hiword() |= (__block << __offset);
- this->_M_w.push_back(__block >> (_S_bits_per_block - __offset));
- }
- }
- };
- /**
- * @brief The %dynamic_bitset class represents a sequence of bits.
- *
- * See N2050,
- * Proposal to Add a Dynamically Sizeable Bitset to the Standard Library.
- *
- * In the general unoptimized case, storage is allocated in
- * word-sized blocks. Let B be the number of bits in a word, then
- * (Nb+(B-1))/B words will be used for storage. B - Nb%B bits are
- * unused. (They are the high-order bits in the highest word.) It
- * is a class invariant that those unused bits are always zero.
- *
- * If you think of %dynamic_bitset as "a simple array of bits," be
- * aware that your mental picture is reversed: a %dynamic_bitset
- * behaves the same way as bits in integers do, with the bit at
- * index 0 in the "least significant / right-hand" position, and
- * the bit at index Nb-1 in the "most significant / left-hand"
- * position. Thus, unlike other containers, a %dynamic_bitset's
- * index "counts from right to left," to put it very loosely.
- *
- * This behavior is preserved when translating to and from strings.
- * For example, the first line of the following program probably
- * prints "b('a') is 0001100001" on a modern ASCII system.
- *
- * @code
- * #include <dynamic_bitset>
- * #include <iostream>
- * #include <sstream>
- *
- * using namespace std;
- *
- * int main()
- * {
- * long a = 'a';
- * dynamic_bitset<> b(a);
- *
- * cout << "b('a') is " << b << endl;
- *
- * ostringstream s;
- * s << b;
- * string str = s.str();
- * cout << "index 3 in the string is " << str[3] << " but\n"
- * << "index 3 in the bitset is " << b[3] << endl;
- * }
- * @endcode
- *
- * Most of the actual code isn't contained in %dynamic_bitset<>
- * itself, but in the base class __dynamic_bitset_base. The base
- * class works with whole words, not with individual bits. This
- * allows us to specialize __dynamic_bitset_base for the important
- * special case where the %dynamic_bitset is only a single word.
- *
- * Extra confusion can result due to the fact that the storage for
- * __dynamic_bitset_base @e is a vector, and is indexed as such. This is
- * carefully encapsulated.
- */
- template<typename _WordT = unsigned long long,
- typename _Alloc = std::allocator<_WordT>>
- class dynamic_bitset
- : private __dynamic_bitset_base<_WordT, _Alloc>
- {
- static_assert(std::is_unsigned<_WordT>::value, "template argument "
- "_WordT not an unsigned integral type");
- public:
- typedef __dynamic_bitset_base<_WordT, _Alloc> _Base;
- typedef _WordT block_type;
- typedef _Alloc allocator_type;
- typedef size_t size_type;
- static const size_type bits_per_block = __CHAR_BIT__ * sizeof(block_type);
- // Use this: constexpr size_type std::numeric_limits<size_type>::max().
- static const size_type npos = static_cast<size_type>(-1);
- private:
- // Clear the unused bits in the uppermost word.
- void
- _M_do_sanitize()
- {
- size_type __shift = this->_M_Nb % bits_per_block;
- if (__shift > 0)
- this->_M_hiword() &= ~((~static_cast<block_type>(0)) << __shift);
- }
- // Set the unused bits in the uppermost word.
- void
- _M_do_fill()
- {
- size_type __shift = this->_M_Nb % bits_per_block;
- if (__shift > 0)
- this->_M_hiword() |= ((~static_cast<block_type>(0)) << __shift);
- }
- /**
- * These versions of single-bit set, reset, flip, and test
- * do no range checking.
- */
- dynamic_bitset<_WordT, _Alloc>&
- _M_unchecked_set(size_type __pos)
- {
- this->_M_getword(__pos) |= _Base::_S_maskbit(__pos);
- return *this;
- }
- dynamic_bitset<_WordT, _Alloc>&
- _M_unchecked_set(size_type __pos, int __val)
- {
- if (__val)
- this->_M_getword(__pos) |= _Base::_S_maskbit(__pos);
- else
- this->_M_getword(__pos) &= ~_Base::_S_maskbit(__pos);
- return *this;
- }
- dynamic_bitset<_WordT, _Alloc>&
- _M_unchecked_reset(size_type __pos)
- {
- this->_M_getword(__pos) &= ~_Base::_S_maskbit(__pos);
- return *this;
- }
- dynamic_bitset<_WordT, _Alloc>&
- _M_unchecked_flip(size_type __pos)
- {
- this->_M_getword(__pos) ^= _Base::_S_maskbit(__pos);
- return *this;
- }
- bool
- _M_unchecked_test(size_type __pos) const
- { return ((this->_M_getword(__pos) & _Base::_S_maskbit(__pos))
- != static_cast<_WordT>(0)); }
- size_type _M_Nb;
- public:
- /**
- * This encapsulates the concept of a single bit. An instance
- * of this class is a proxy for an actual bit; this way the
- * individual bit operations are done as faster word-size
- * bitwise instructions.
- *
- * Most users will never need to use this class directly;
- * conversions to and from bool are automatic and should be
- * transparent. Overloaded operators help to preserve the
- * illusion.
- *
- * (On a typical system, this "bit %reference" is 64 times the
- * size of an actual bit. Ha.)
- */
- class reference
- {
- friend class dynamic_bitset;
- block_type *_M_wp;
- size_type _M_bpos;
- // left undefined
- reference();
- public:
- reference(dynamic_bitset& __b, size_type __pos)
- {
- this->_M_wp = &__b._M_getword(__pos);
- this->_M_bpos = _Base::_S_whichbit(__pos);
- }
- ~reference()
- { }
- // For b[i] = __x;
- reference&
- operator=(bool __x)
- {
- if (__x)
- *this->_M_wp |= _Base::_S_maskbit(this->_M_bpos);
- else
- *this->_M_wp &= ~_Base::_S_maskbit(this->_M_bpos);
- return *this;
- }
- // For b[i] = b[__j];
- reference&
- operator=(const reference& __j)
- {
- if ((*(__j._M_wp) & _Base::_S_maskbit(__j._M_bpos)))
- *this->_M_wp |= _Base::_S_maskbit(this->_M_bpos);
- else
- *this->_M_wp &= ~_Base::_S_maskbit(this->_M_bpos);
- return *this;
- }
- // Flips the bit
- bool
- operator~() const
- { return (*(_M_wp) & _Base::_S_maskbit(this->_M_bpos)) == 0; }
- // For __x = b[i];
- operator bool() const
- { return (*(this->_M_wp) & _Base::_S_maskbit(this->_M_bpos)) != 0; }
- // For b[i].flip();
- reference&
- flip()
- {
- *this->_M_wp ^= _Base::_S_maskbit(this->_M_bpos);
- return *this;
- }
- };
- friend class reference;
- typedef bool const_reference;
- // 23.3.5.1 constructors:
- /// All bits set to zero.
- explicit
- dynamic_bitset(const allocator_type& __alloc = allocator_type())
- : _Base(__alloc), _M_Nb(0)
- { }
- /// Initial bits bitwise-copied from a single word (others set to zero).
- explicit
- dynamic_bitset(size_type __nbits, unsigned long long __val = 0ULL,
- const allocator_type& __alloc = allocator_type())
- : _Base(__nbits, __val, __alloc),
- _M_Nb(__nbits)
- { }
- dynamic_bitset(initializer_list<block_type> __il,
- const allocator_type& __alloc = allocator_type())
- : _Base(__alloc), _M_Nb(0)
- { this->append(__il); }
- /**
- * @brief Use a subset of a string.
- * @param __str A string of '0' and '1' characters.
- * @param __pos Index of the first character in @p __str to use.
- * @param __n The number of characters to copy.
- * @param __zero The character to use for unset bits.
- * @param __one The character to use for set bits.
- * @param __alloc An allocator.
- * @throw std::out_of_range If @p __pos is bigger the size of @p __str.
- * @throw std::invalid_argument If a character appears in the string
- * which is neither '0' nor '1'.
- */
- template<typename _CharT, typename _Traits, typename _Alloc1>
- explicit
- dynamic_bitset(const std::basic_string<_CharT, _Traits, _Alloc1>& __str,
- typename basic_string<_CharT,_Traits,_Alloc1>::size_type
- __pos = 0,
- typename basic_string<_CharT,_Traits,_Alloc1>::size_type
- __n = std::basic_string<_CharT, _Traits, _Alloc1>::npos,
- _CharT __zero = _CharT('0'), _CharT __one = _CharT('1'),
- const allocator_type& __alloc = allocator_type())
- : _Base(__alloc),
- _M_Nb(0) // Watch for npos.
- {
- if (__pos > __str.size())
- __throw_out_of_range(__N("dynamic_bitset::bitset initial position "
- "not valid"));
- // Watch for npos.
- this->_M_Nb = (__n > __str.size() ? __str.size() - __pos : __n);
- this->resize(this->_M_Nb);
- this->_M_copy_from_string(__str, __pos, __n,
- _CharT('0'), _CharT('1'));
- }
- /**
- * @brief Construct from a string.
- * @param __str A string of '0' and '1' characters.
- * @param __alloc An allocator.
- * @throw std::invalid_argument If a character appears in the string
- * which is neither '0' nor '1'.
- */
- explicit
- dynamic_bitset(const char* __str,
- const allocator_type& __alloc = allocator_type())
- : _Base(__alloc)
- {
- size_t __len = 0;
- if (__str)
- while (__str[__len] != '\0')
- ++__len;
- this->resize(__len);
- this->_M_copy_from_ptr<char,std::char_traits<char>>
- (__str, __len, 0, __len, '0', '1');
- }
- /**
- * @brief Copy constructor.
- */
- dynamic_bitset(const dynamic_bitset& __b)
- : _Base(__b), _M_Nb(__b.size())
- { }
- /**
- * @brief Move constructor.
- */
- dynamic_bitset(dynamic_bitset&& __b)
- : _Base(std::forward<_Base>(__b)), _M_Nb(__b.size())
- { }
- /**
- * @brief Swap with another bitset.
- */
- void
- swap(dynamic_bitset& __b)
- {
- this->_M_swap(__b);
- std::swap(this->_M_Nb, __b._M_Nb);
- }
- /**
- * @brief Assignment.
- */
- dynamic_bitset&
- operator=(const dynamic_bitset& __b)
- {
- if (&__b != this)
- {
- this->_M_assign(__b);
- this->_M_Nb = __b._M_Nb;
- }
- }
- /**
- * @brief Move assignment.
- */
- dynamic_bitset&
- operator=(dynamic_bitset&& __b)
- {
- this->swap(__b);
- return *this;
- }
- /**
- * @brief Return the allocator for the bitset.
- */
- allocator_type
- get_allocator() const
- { return this->_M_get_allocator(); }
- /**
- * @brief Resize the bitset.
- */
- void
- resize(size_type __nbits, bool __value = false)
- {
- if (__value)
- this->_M_do_fill();
- this->_M_resize(__nbits, __value);
- this->_M_Nb = __nbits;
- this->_M_do_sanitize();
- }
- /**
- * @brief Clear the bitset.
- */
- void
- clear()
- {
- this->_M_clear();
- this->_M_Nb = 0;
- }
- /**
- * @brief Push a bit onto the high end of the bitset.
- */
- void
- push_back(bool __bit)
- {
- if (size_t __offset = this->size() % bits_per_block == 0)
- this->_M_do_append_block(block_type(0), this->_M_Nb);
- ++this->_M_Nb;
- this->_M_unchecked_set(this->_M_Nb, __bit);
- }
- /**
- * @brief Append a block.
- */
- void
- append(block_type __block)
- {
- this->_M_do_append_block(__block, this->_M_Nb);
- this->_M_Nb += bits_per_block;
- }
- /**
- * @brief
- */
- void
- append(initializer_list<block_type> __il)
- { this->append(__il.begin(), __il.end()); }
- /**
- * @brief Append an iterator range of blocks.
- */
- template <typename _BlockInputIterator>
- void
- append(_BlockInputIterator __first, _BlockInputIterator __last)
- {
- for (; __first != __last; ++__first)
- this->append(*__first);
- }
- // 23.3.5.2 dynamic_bitset operations:
- //@{
- /**
- * @brief Operations on dynamic_bitsets.
- * @param __rhs A same-sized dynamic_bitset.
- *
- * These should be self-explanatory.
- */
- dynamic_bitset<_WordT, _Alloc>&
- operator&=(const dynamic_bitset<_WordT, _Alloc>& __rhs)
- {
- this->_M_do_and(__rhs);
- return *this;
- }
- dynamic_bitset<_WordT, _Alloc>&
- operator&=(dynamic_bitset<_WordT, _Alloc>&& __rhs)
- {
- this->_M_do_and(std::move(__rhs));
- return *this;
- }
- dynamic_bitset<_WordT, _Alloc>&
- operator|=(const dynamic_bitset<_WordT, _Alloc>& __rhs)
- {
- this->_M_do_or(__rhs);
- return *this;
- }
- dynamic_bitset<_WordT, _Alloc>&
- operator^=(const dynamic_bitset<_WordT, _Alloc>& __rhs)
- {
- this->_M_do_xor(__rhs);
- return *this;
- }
- dynamic_bitset<_WordT, _Alloc>&
- operator-=(const dynamic_bitset<_WordT, _Alloc>& __rhs)
- {
- this->_M_do_dif(__rhs);
- return *this;
- }
- //@}
- //@{
- /**
- * @brief Operations on dynamic_bitsets.
- * @param __pos The number of places to shift.
- *
- * These should be self-explanatory.
- */
- dynamic_bitset<_WordT, _Alloc>&
- operator<<=(size_type __pos)
- {
- if (__builtin_expect(__pos < this->_M_Nb, 1))
- {
- this->_M_do_left_shift(__pos);
- this->_M_do_sanitize();
- }
- else
- this->_M_do_reset();
- return *this;
- }
- dynamic_bitset<_WordT, _Alloc>&
- operator>>=(size_type __pos)
- {
- if (__builtin_expect(__pos < this->_M_Nb, 1))
- {
- this->_M_do_right_shift(__pos);
- this->_M_do_sanitize();
- }
- else
- this->_M_do_reset();
- return *this;
- }
- //@}
- // Set, reset, and flip.
- /**
- * @brief Sets every bit to true.
- */
- dynamic_bitset<_WordT, _Alloc>&
- set()
- {
- this->_M_do_set();
- this->_M_do_sanitize();
- return *this;
- }
- /**
- * @brief Sets a given bit to a particular value.
- * @param __pos The index of the bit.
- * @param __val Either true or false, defaults to true.
- * @throw std::out_of_range If @a __pos is bigger the size of the %set.
- */
- dynamic_bitset<_WordT, _Alloc>&
- set(size_type __pos, bool __val = true)
- {
- if (__pos >= _M_Nb)
- __throw_out_of_range(__N("dynamic_bitset::set"));
- return this->_M_unchecked_set(__pos, __val);
- }
- /**
- * @brief Sets every bit to false.
- */
- dynamic_bitset<_WordT, _Alloc>&
- reset()
- {
- this->_M_do_reset();
- return *this;
- }
- /**
- * @brief Sets a given bit to false.
- * @param __pos The index of the bit.
- * @throw std::out_of_range If @a __pos is bigger the size of the %set.
- *
- * Same as writing @c set(__pos, false).
- */
- dynamic_bitset<_WordT, _Alloc>&
- reset(size_type __pos)
- {
- if (__pos >= _M_Nb)
- __throw_out_of_range(__N("dynamic_bitset::reset"));
- return this->_M_unchecked_reset(__pos);
- }
- /**
- * @brief Toggles every bit to its opposite value.
- */
- dynamic_bitset<_WordT, _Alloc>&
- flip()
- {
- this->_M_do_flip();
- this->_M_do_sanitize();
- return *this;
- }
- /**
- * @brief Toggles a given bit to its opposite value.
- * @param __pos The index of the bit.
- * @throw std::out_of_range If @a __pos is bigger the size of the %set.
- */
- dynamic_bitset<_WordT, _Alloc>&
- flip(size_type __pos)
- {
- if (__pos >= _M_Nb)
- __throw_out_of_range(__N("dynamic_bitset::flip"));
- return this->_M_unchecked_flip(__pos);
- }
- /// See the no-argument flip().
- dynamic_bitset<_WordT, _Alloc>
- operator~() const
- { return dynamic_bitset<_WordT, _Alloc>(*this).flip(); }
- //@{
- /**
- * @brief Array-indexing support.
- * @param __pos Index into the %dynamic_bitset.
- * @return A bool for a 'const %dynamic_bitset'. For non-const
- * bitsets, an instance of the reference proxy class.
- * @note These operators do no range checking and throw no
- * exceptions, as required by DR 11 to the standard.
- */
- reference
- operator[](size_type __pos)
- { return reference(*this,__pos); }
- const_reference
- operator[](size_type __pos) const
- { return _M_unchecked_test(__pos); }
- //@}
- /**
- * @brief Returns a numerical interpretation of the %dynamic_bitset.
- * @return The integral equivalent of the bits.
- * @throw std::overflow_error If there are too many bits to be
- * represented in an @c unsigned @c long.
- */
- unsigned long
- to_ulong() const
- { return this->_M_do_to_ulong(); }
- /**
- * @brief Returns a numerical interpretation of the %dynamic_bitset.
- * @return The integral equivalent of the bits.
- * @throw std::overflow_error If there are too many bits to be
- * represented in an @c unsigned @c long.
- */
- unsigned long long
- to_ullong() const
- { return this->_M_do_to_ullong(); }
- /**
- * @brief Returns a character interpretation of the %dynamic_bitset.
- * @return The string equivalent of the bits.
- *
- * Note the ordering of the bits: decreasing character positions
- * correspond to increasing bit positions (see the main class notes for
- * an example).
- */
- template<typename _CharT = char,
- typename _Traits = std::char_traits<_CharT>,
- typename _Alloc1 = std::allocator<_CharT>>
- std::basic_string<_CharT, _Traits, _Alloc1>
- to_string(_CharT __zero = _CharT('0'), _CharT __one = _CharT('1')) const
- {
- std::basic_string<_CharT, _Traits, _Alloc1> __result;
- _M_copy_to_string(__result, __zero, __one);
- return __result;
- }
- // Helper functions for string operations.
- template<typename _CharT, typename _Traits>
- void
- _M_copy_from_ptr(const _CharT*, size_t, size_t, size_t,
- _CharT, _CharT);
- template<typename _CharT, typename _Traits, typename _Alloc1>
- void
- _M_copy_from_string(const std::basic_string<_CharT,
- _Traits, _Alloc1>& __str, size_t __pos, size_t __n,
- _CharT __zero = _CharT('0'),
- _CharT __one = _CharT('1'))
- { _M_copy_from_ptr<_CharT, _Traits>(__str.data(), __str.size(),
- __pos, __n, __zero, __one); }
- template<typename _CharT, typename _Traits, typename _Alloc1>
- void
- _M_copy_to_string(std::basic_string<_CharT, _Traits, _Alloc1>& __str,
- _CharT __zero = _CharT('0'),
- _CharT __one = _CharT('1')) const;
- /// Returns the number of bits which are set.
- size_type
- count() const noexcept
- { return this->_M_do_count(); }
- /// Returns the total number of bits.
- size_type
- size() const noexcept
- { return this->_M_Nb; }
- /// Returns the total number of blocks.
- size_type
- num_blocks() const noexcept
- { return this->_M_size(); }
- /// Returns true if the dynamic_bitset is empty.
- bool
- empty() const noexcept
- { return (this->_M_Nb == 0); }
- /// Returns the maximum size of a dynamic_bitset object having the same
- /// type as *this.
- /// The real answer is max() * bits_per_block but is likely to overflow.
- constexpr size_type
- max_size() noexcept
- { return std::numeric_limits<block_type>::max(); }
- /**
- * @brief Tests the value of a bit.
- * @param __pos The index of a bit.
- * @return The value at @a __pos.
- * @throw std::out_of_range If @a __pos is bigger the size of the %set.
- */
- bool
- test(size_type __pos) const
- {
- if (__pos >= _M_Nb)
- __throw_out_of_range(__N("dynamic_bitset::test"));
- return _M_unchecked_test(__pos);
- }
- /**
- * @brief Tests whether all the bits are on.
- * @return True if all the bits are set.
- */
- bool
- all() const
- { return this->_M_are_all_aux() == _M_Nb; }
- /**
- * @brief Tests whether any of the bits are on.
- * @return True if at least one bit is set.
- */
- bool
- any() const
- { return this->_M_is_any(); }
- /**
- * @brief Tests whether any of the bits are on.
- * @return True if none of the bits are set.
- */
- bool
- none() const
- { return !this->_M_is_any(); }
- //@{
- /// Self-explanatory.
- dynamic_bitset<_WordT, _Alloc>
- operator<<(size_type __pos) const
- { return dynamic_bitset<_WordT, _Alloc>(*this) <<= __pos; }
- dynamic_bitset<_WordT, _Alloc>
- operator>>(size_type __pos) const
- { return dynamic_bitset<_WordT, _Alloc>(*this) >>= __pos; }
- //@}
- /**
- * @brief Finds the index of the first "on" bit.
- * @return The index of the first bit set, or size() if not found.
- * @sa find_next
- */
- size_type
- find_first() const
- { return this->_M_do_find_first(this->_M_Nb); }
- /**
- * @brief Finds the index of the next "on" bit after prev.
- * @return The index of the next bit set, or size() if not found.
- * @param __prev Where to start searching.
- * @sa find_first
- */
- size_type
- find_next(size_t __prev) const
- { return this->_M_do_find_next(__prev, this->_M_Nb); }
- bool
- is_subset_of(const dynamic_bitset& __b) const
- { return this->_M_is_subset_of(__b); }
- bool
- is_proper_subset_of(const dynamic_bitset& __b) const
- { return this->_M_is_proper_subset_of(__b); }
- friend bool
- operator==(const dynamic_bitset<_WordT, _Alloc>& __lhs,
- const dynamic_bitset<_WordT, _Alloc>& __rhs)
- { return __lhs._M_is_equal(__rhs); }
- friend bool
- operator<(const dynamic_bitset<_WordT, _Alloc>& __lhs,
- const dynamic_bitset<_WordT, _Alloc>& __rhs)
- { return __lhs._M_is_less(__rhs); }
- };
- template<typename _WordT, typename _Alloc>
- template<typename _CharT, typename _Traits, typename _Alloc1>
- inline void
- dynamic_bitset<_WordT, _Alloc>::
- _M_copy_to_string(std::basic_string<_CharT, _Traits, _Alloc1>& __str,
- _CharT __zero, _CharT __one) const
- {
- __str.assign(_M_Nb, __zero);
- for (size_t __i = _M_Nb; __i > 0; --__i)
- if (_M_unchecked_test(__i - 1))
- _Traits::assign(__str[_M_Nb - __i], __one);
- }
- //@{
- /// These comparisons for equality/inequality are, well, @e bitwise.
- template<typename _WordT, typename _Alloc>
- inline bool
- operator!=(const dynamic_bitset<_WordT, _Alloc>& __lhs,
- const dynamic_bitset<_WordT, _Alloc>& __rhs)
- { return !(__lhs == __rhs); }
- template<typename _WordT, typename _Alloc>
- inline bool
- operator<=(const dynamic_bitset<_WordT, _Alloc>& __lhs,
- const dynamic_bitset<_WordT, _Alloc>& __rhs)
- { return !(__lhs > __rhs); }
- template<typename _WordT, typename _Alloc>
- inline bool
- operator>(const dynamic_bitset<_WordT, _Alloc>& __lhs,
- const dynamic_bitset<_WordT, _Alloc>& __rhs)
- { return __rhs < __lhs; }
- template<typename _WordT, typename _Alloc>
- inline bool
- operator>=(const dynamic_bitset<_WordT, _Alloc>& __lhs,
- const dynamic_bitset<_WordT, _Alloc>& __rhs)
- { return !(__lhs < __rhs); }
- //@}
- // 23.3.5.3 bitset operations:
- //@{
- /**
- * @brief Global bitwise operations on bitsets.
- * @param __x A bitset.
- * @param __y A bitset of the same size as @a __x.
- * @return A new bitset.
- *
- * These should be self-explanatory.
- */
- template<typename _WordT, typename _Alloc>
- inline dynamic_bitset<_WordT, _Alloc>
- operator&(const dynamic_bitset<_WordT, _Alloc>& __x,
- const dynamic_bitset<_WordT, _Alloc>& __y)
- {
- dynamic_bitset<_WordT, _Alloc> __result(__x);
- __result &= __y;
- return __result;
- }
- template<typename _WordT, typename _Alloc>
- inline dynamic_bitset<_WordT, _Alloc>
- operator|(const dynamic_bitset<_WordT, _Alloc>& __x,
- const dynamic_bitset<_WordT, _Alloc>& __y)
- {
- dynamic_bitset<_WordT, _Alloc> __result(__x);
- __result |= __y;
- return __result;
- }
- template <typename _WordT, typename _Alloc>
- inline dynamic_bitset<_WordT, _Alloc>
- operator^(const dynamic_bitset<_WordT, _Alloc>& __x,
- const dynamic_bitset<_WordT, _Alloc>& __y)
- {
- dynamic_bitset<_WordT, _Alloc> __result(__x);
- __result ^= __y;
- return __result;
- }
- template <typename _WordT, typename _Alloc>
- inline dynamic_bitset<_WordT, _Alloc>
- operator-(const dynamic_bitset<_WordT, _Alloc>& __x,
- const dynamic_bitset<_WordT, _Alloc>& __y)
- {
- dynamic_bitset<_WordT, _Alloc> __result(__x);
- __result -= __y;
- return __result;
- }
- //@}
- /// Stream output operator for dynamic_bitset.
- template <typename _CharT, typename _Traits,
- typename _WordT, typename _Alloc>
- inline std::basic_ostream<_CharT, _Traits>&
- operator<<(std::basic_ostream<_CharT, _Traits>& __os,
- const dynamic_bitset<_WordT, _Alloc>& __x)
- {
- std::basic_string<_CharT, _Traits> __tmp;
- const ctype<_CharT>& __ct = use_facet<ctype<_CharT>>(__os.getloc());
- __x._M_copy_to_string(__tmp, __ct.widen('0'), __ct.widen('1'));
- return __os << __tmp;
- }
- /**
- * @}
- */
- } // tr2
- _GLIBCXX_END_NAMESPACE_VERSION
- } // std
- #include <tr2/dynamic_bitset.tcc>
- #endif /* _GLIBCXX_TR2_DYNAMIC_BITSET */
|