bitset
上传用户:nizebo
上传日期:2022-05-14
资源大小:882k
文件大小:32k
源码类别:

STL

开发平台:

Visual C++

  1. /*
  2.  * Copyright (c) 1998
  3.  * Silicon Graphics Computer Systems, Inc.
  4.  *
  5.  * Permission to use, copy, modify, distribute and sell this software
  6.  * and its documentation for any purpose is hereby granted without fee,
  7.  * provided that the above copyright notice appear in all copies and
  8.  * that both that copyright notice and this permission notice appear
  9.  * in supporting documentation.  Silicon Graphics makes no
  10.  * representations about the suitability of this software for any
  11.  * purpose.  It is provided "as is" without express or implied warranty.
  12.  */ 
  13. #ifndef __SGI_STL_BITSET
  14. #define __SGI_STL_BITSET
  15. // A bitset of size N has N % (sizeof(unsigned long) * CHAR_BIT) unused 
  16. // bits.  (They are the high- order bits in the highest word.)  It is
  17. // a class invariant of class bitset<> that those unused bits are
  18. // always zero.
  19. // Most of the actual code isn't contained in bitset<> itself, but in the 
  20. // base class _Base_bitset.  The base class works with whole words, not with
  21. // individual bits.  This allows us to specialize _Base_bitset for the
  22. // important special case where the bitset is only a single word.
  23. // The C++ standard does not define the precise semantics of operator[].
  24. // In this implementation the const version of operator[] is equivalent
  25. // to test(), except that it does no range checking.  The non-const version
  26. // returns a reference to a bit, again without doing any range checking.
  27. #include <stddef.h>     // for size_t
  28. #include <string.h>     // for memset
  29. #include <string>
  30. #include <stdexcept>    // for invalid_argument, out_of_range, overflow_error
  31. #ifdef __STL_USE_NEW_IOSTREAMS 
  32. #include <iostream>
  33. #else
  34. #include <iostream.h>   // for istream, ostream
  35. #endif
  36. #define __BITS_PER_WORD (CHAR_BIT*sizeof(unsigned long))
  37. #define __BITSET_WORDS(__n) 
  38.  ((__n) < 1 ? 1 : ((__n) + __BITS_PER_WORD - 1)/__BITS_PER_WORD)
  39. __STL_BEGIN_NAMESPACE
  40. #if defined(__sgi) && !defined(__GNUC__) && (_MIPS_SIM != _MIPS_SIM_ABI32)
  41. #pragma set woff 1209
  42. #endif
  43. // structure to aid in counting bits
  44. template<bool __dummy> 
  45. struct _Bit_count {
  46.   static unsigned char _S_bit_count[256];
  47. };
  48. // Mapping from 8 bit unsigned integers to the index of the first one
  49. // bit:
  50. template<bool __dummy> 
  51. struct _First_one {
  52.   static unsigned char _S_first_one[256];
  53. };
  54. //
  55. // Base class: general case.
  56. //
  57. template<size_t _Nw>
  58. struct _Base_bitset {
  59.   typedef unsigned long _WordT;
  60.   _WordT _M_w[_Nw];                // 0 is the least significant word.
  61.   _Base_bitset( void ) { _M_do_reset(); }
  62.   _Base_bitset(unsigned long __val) {
  63.     _M_do_reset();
  64.     _M_w[0] = __val;
  65.   }
  66.   static size_t _S_whichword( size_t __pos )
  67.     { return __pos / __BITS_PER_WORD; }
  68.   static size_t _S_whichbyte( size_t __pos )
  69.     { return (__pos % __BITS_PER_WORD) / CHAR_BIT; }
  70.   static size_t _S_whichbit( size_t __pos )
  71.     { return __pos % __BITS_PER_WORD; }
  72.   static _WordT _S_maskbit( size_t __pos )
  73.     { return (static_cast<_WordT>(1)) << _S_whichbit(__pos); }
  74.   _WordT& _M_getword(size_t __pos)       { return _M_w[_S_whichword(__pos)]; }
  75.   _WordT  _M_getword(size_t __pos) const { return _M_w[_S_whichword(__pos)]; }
  76.   _WordT& _M_hiword()       { return _M_w[_Nw - 1]; }
  77.   _WordT  _M_hiword() const { return _M_w[_Nw - 1]; }
  78.   void _M_do_and(const _Base_bitset<_Nw>& __x) {
  79.     for ( size_t __i = 0; __i < _Nw; __i++ ) {
  80.       _M_w[__i] &= __x._M_w[__i];
  81.     }
  82.   }
  83.   void _M_do_or(const _Base_bitset<_Nw>& __x) {
  84.     for ( size_t __i = 0; __i < _Nw; __i++ ) {
  85.       _M_w[__i] |= __x._M_w[__i];
  86.     }
  87.   }
  88.   void _M_do_xor(const _Base_bitset<_Nw>& __x) {
  89.     for ( size_t __i = 0; __i < _Nw; __i++ ) {
  90.       _M_w[__i] ^= __x._M_w[__i];
  91.     }
  92.   }
  93.   void _M_do_left_shift(size_t __shift);
  94.   void _M_do_right_shift(size_t __shift);
  95.   void _M_do_flip() {
  96.     for ( size_t __i = 0; __i < _Nw; __i++ ) {
  97.       _M_w[__i] = ~_M_w[__i];
  98.     }
  99.   }
  100.   void _M_do_set() {
  101.     for ( size_t __i = 0; __i < _Nw; __i++ ) {
  102.       _M_w[__i] = ~static_cast<_WordT>(0);
  103.     }
  104.   }
  105.   void _M_do_reset() { memset(_M_w, 0, _Nw * sizeof(_WordT)); }
  106.   bool _M_is_equal(const _Base_bitset<_Nw>& __x) const {
  107.     for (size_t __i = 0; __i < _Nw; ++__i) {
  108.       if (_M_w[__i] != __x._M_w[__i])
  109.         return false;
  110.     }
  111.     return true;
  112.   }
  113.   bool _M_is_any() const {
  114.     for ( size_t __i = 0; __i < _Nw; __i++ ) {
  115.       if ( _M_w[__i] != static_cast<_WordT>(0) )
  116.         return true;
  117.     }
  118.     return false;
  119.   }
  120.   size_t _M_do_count() const {
  121.     size_t __result = 0;
  122.     const unsigned char* __byte_ptr = (const unsigned char*)_M_w;
  123.     const unsigned char* __end_ptr = (const unsigned char*)(_M_w+_Nw);
  124.     while ( __byte_ptr < __end_ptr ) {
  125.       __result += _Bit_count<true>::_S_bit_count[*__byte_ptr];
  126.       __byte_ptr++;
  127.     }
  128.     return __result;
  129.   }
  130.   unsigned long _M_do_to_ulong() const; 
  131.   // find first "on" bit
  132.   size_t _M_do_find_first(size_t __not_found) const;
  133.   // find the next "on" bit that follows "prev"
  134.   size_t _M_do_find_next(size_t __prev, size_t __not_found) const;
  135. };
  136. //
  137. // Definitions of non-inline functions from _Base_bitset.
  138. // 
  139. template<size_t _Nw>
  140. void _Base_bitset<_Nw>::_M_do_left_shift(size_t __shift) 
  141. {
  142.   if (__shift != 0) {
  143.     const size_t __wshift = __shift / __BITS_PER_WORD;
  144.     const size_t __offset = __shift % __BITS_PER_WORD;
  145.     if (__offset == 0)
  146.       for (size_t __n = _Nw - 1; __n >= __wshift; --__n)
  147.         _M_w[__n] = _M_w[__n - __wshift];
  148.     else {
  149.       const size_t __sub_offset = __BITS_PER_WORD - __offset;
  150.       for (size_t __n = _Nw - 1; __n > __wshift; --__n)
  151.         _M_w[__n] = (_M_w[__n - __wshift] << __offset) | 
  152.                     (_M_w[__n - __wshift - 1] >> __sub_offset);
  153.       _M_w[__wshift] = _M_w[0] << __offset;
  154.     }
  155.     fill(_M_w + 0, _M_w + __wshift, static_cast<_WordT>(0));
  156.   }
  157. }
  158. template<size_t _Nw>
  159. void _Base_bitset<_Nw>::_M_do_right_shift(size_t __shift) 
  160. {
  161.   if (__shift != 0) {
  162.     const size_t __wshift = __shift / __BITS_PER_WORD;
  163.     const size_t __offset = __shift % __BITS_PER_WORD;
  164.     const size_t __limit = _Nw - __wshift - 1;
  165.     if (__offset == 0)
  166.       for (size_t __n = 0; __n <= __limit; ++__n)
  167.         _M_w[__n] = _M_w[__n + __wshift];
  168.     else {
  169.       const size_t __sub_offset = __BITS_PER_WORD - __offset;
  170.       for (size_t __n = 0; __n < __limit; ++__n)
  171.         _M_w[__n] = (_M_w[__n + __wshift] >> __offset) |
  172.                     (_M_w[__n + __wshift + 1] << __sub_offset);
  173.       _M_w[__limit] = _M_w[_Nw-1] >> __offset;
  174.     }
  175.     fill(_M_w + __limit + 1, _M_w + _Nw, static_cast<_WordT>(0));
  176.   }
  177. }
  178. template<size_t _Nw>
  179. unsigned long _Base_bitset<_Nw>::_M_do_to_ulong() const
  180. {
  181.   for (size_t __i = 1; __i < _Nw; ++__i) 
  182.     if (_M_w[__i]) 
  183.       __STL_THROW(overflow_error("bitset"));
  184.   
  185.   return _M_w[0];
  186. }
  187. template<size_t _Nw>
  188. size_t _Base_bitset<_Nw>::_M_do_find_first(size_t __not_found) const 
  189. {
  190.   for ( size_t __i = 0; __i < _Nw; __i++ ) {
  191.     _WordT __thisword = _M_w[__i];
  192.     if ( __thisword != static_cast<_WordT>(0) ) {
  193.       // find byte within word
  194.       for ( size_t __j = 0; __j < sizeof(_WordT); __j++ ) {
  195.         unsigned char __this_byte
  196.           = static_cast<unsigned char>(__thisword & (~(unsigned char)0));
  197.         if ( __this_byte )
  198.           return __i*__BITS_PER_WORD + __j*CHAR_BIT +
  199.             _First_one<true>::_S_first_one[__this_byte];
  200.         __thisword >>= CHAR_BIT;
  201.       }
  202.     }
  203.   }
  204.   // not found, so return an indication of failure.
  205.   return __not_found;
  206. }
  207. template<size_t _Nw>
  208. size_t
  209. _Base_bitset<_Nw>::_M_do_find_next(size_t __prev, size_t __not_found) const
  210. {
  211.   // make bound inclusive
  212.   ++__prev;
  213.   // check out of bounds
  214.   if ( __prev >= _Nw * __BITS_PER_WORD )
  215.     return __not_found;
  216.     // search first word
  217.   size_t __i = _S_whichword(__prev);
  218.   _WordT __thisword = _M_w[__i];
  219.     // mask off bits below bound
  220.   __thisword &= (~static_cast<_WordT>(0)) << _S_whichbit(__prev);
  221.   if ( __thisword != static_cast<_WordT>(0) ) {
  222.     // find byte within word
  223.     // get first byte into place
  224.     __thisword >>= _S_whichbyte(__prev) * CHAR_BIT;
  225.     for ( size_t __j = _S_whichbyte(__prev); __j < sizeof(_WordT); __j++ ) {
  226.       unsigned char __this_byte
  227.         = static_cast<unsigned char>(__thisword & (~(unsigned char)0));
  228.       if ( __this_byte )
  229.         return __i*__BITS_PER_WORD + __j*CHAR_BIT +
  230.           _First_one<true>::_S_first_one[__this_byte];
  231.       __thisword >>= CHAR_BIT;
  232.     }
  233.   }
  234.   // check subsequent words
  235.   __i++;
  236.   for ( ; __i < _Nw; __i++ ) {
  237.     _WordT __thisword = _M_w[__i];
  238.     if ( __thisword != static_cast<_WordT>(0) ) {
  239.       // find byte within word
  240.       for ( size_t __j = 0; __j < sizeof(_WordT); __j++ ) {
  241.         unsigned char __this_byte
  242.           = static_cast<unsigned char>(__thisword & (~(unsigned char)0));
  243.         if ( __this_byte )
  244.           return __i*__BITS_PER_WORD + __j*CHAR_BIT +
  245.             _First_one<true>::_S_first_one[__this_byte];
  246.         __thisword >>= CHAR_BIT;
  247.       }
  248.     }
  249.   }
  250.   // not found, so return an indication of failure.
  251.   return __not_found;
  252. } // end _M_do_find_next
  253. // ------------------------------------------------------------
  254. //
  255. // Base class: specialization for a single word.
  256. //
  257. __STL_TEMPLATE_NULL struct _Base_bitset<1> {
  258.   typedef unsigned long _WordT;
  259.   _WordT _M_w;
  260.   _Base_bitset( void ) : _M_w(0) {}
  261.   _Base_bitset(unsigned long __val) : _M_w(__val) {}
  262.   static size_t _S_whichword( size_t __pos )
  263.     { return __pos / __BITS_PER_WORD; }
  264.   static size_t _S_whichbyte( size_t __pos )
  265.     { return (__pos % __BITS_PER_WORD) / CHAR_BIT; }
  266.   static size_t _S_whichbit( size_t __pos )
  267.     {  return __pos % __BITS_PER_WORD; }
  268.   static _WordT _S_maskbit( size_t __pos )
  269.     { return (static_cast<_WordT>(1)) << _S_whichbit(__pos); }
  270.   _WordT& _M_getword(size_t)       { return _M_w; }
  271.   _WordT  _M_getword(size_t) const { return _M_w; }
  272.   _WordT& _M_hiword()       { return _M_w; }
  273.   _WordT  _M_hiword() const { return _M_w; }
  274.   void _M_do_and(const _Base_bitset<1>& __x) { _M_w &= __x._M_w; }
  275.   void _M_do_or(const _Base_bitset<1>& __x)  { _M_w |= __x._M_w; }
  276.   void _M_do_xor(const _Base_bitset<1>& __x) { _M_w ^= __x._M_w; }
  277.   void _M_do_left_shift(size_t __shift)     { _M_w <<= __shift; }
  278.   void _M_do_right_shift(size_t __shift)    { _M_w >>= __shift; }
  279.   void _M_do_flip()                       { _M_w = ~_M_w; }
  280.   void _M_do_set()                        { _M_w = ~static_cast<_WordT>(0); }
  281.   void _M_do_reset()                      { _M_w = 0; }
  282.   bool _M_is_equal(const _Base_bitset<1>& __x) const
  283.     { return _M_w == __x._M_w; }
  284.   bool _M_is_any() const
  285.     { return _M_w != 0; }
  286.   size_t _M_do_count() const {
  287.     size_t __result = 0;
  288.     const unsigned char* __byte_ptr = (const unsigned char*)&_M_w;
  289.     const unsigned char* __end_ptr
  290.       = ((const unsigned char*)&_M_w)+sizeof(_M_w);
  291.     while ( __byte_ptr < __end_ptr ) {
  292.       __result += _Bit_count<true>::_S_bit_count[*__byte_ptr];
  293.       __byte_ptr++;
  294.     }
  295.     return __result;
  296.   }
  297.   unsigned long _M_do_to_ulong() const { return _M_w; }
  298.   size_t _M_do_find_first(size_t __not_found) const;
  299.   // find the next "on" bit that follows "prev"
  300.   size_t _M_do_find_next(size_t __prev, size_t __not_found) const; 
  301. };
  302. //
  303. // Definitions of non-inline functions from the single-word version of
  304. //  _Base_bitset.
  305. //
  306. size_t _Base_bitset<1>::_M_do_find_first(size_t __not_found) const
  307. {
  308.   _WordT __thisword = _M_w;
  309.   if ( __thisword != static_cast<_WordT>(0) ) {
  310.     // find byte within word
  311.     for ( size_t __j = 0; __j < sizeof(_WordT); __j++ ) {
  312.       unsigned char __this_byte
  313.         = static_cast<unsigned char>(__thisword & (~(unsigned char)0));
  314.       if ( __this_byte )
  315.         return __j*CHAR_BIT + _First_one<true>::_S_first_one[__this_byte];
  316.       __thisword >>= CHAR_BIT;
  317.     }
  318.   }
  319.   // not found, so return a value that indicates failure.
  320.   return __not_found;
  321. }
  322. size_t _Base_bitset<1>::_M_do_find_next(size_t __prev, size_t __not_found ) const
  323. {
  324.   // make bound inclusive
  325.   ++__prev;
  326.   // check out of bounds
  327.   if ( __prev >= __BITS_PER_WORD )
  328.     return __not_found;
  329.     // search first (and only) word
  330.   _WordT __thisword = _M_w;
  331.   // mask off bits below bound
  332.   __thisword &= (~static_cast<_WordT>(0)) << _S_whichbit(__prev);
  333.   if ( __thisword != static_cast<_WordT>(0) ) {
  334.     // find byte within word
  335.     // get first byte into place
  336.     __thisword >>= _S_whichbyte(__prev) * CHAR_BIT;
  337.     for ( size_t __j = _S_whichbyte(__prev); __j < sizeof(_WordT); __j++ ) {
  338.       unsigned char __this_byte
  339.         = static_cast<unsigned char>(__thisword & (~(unsigned char)0));
  340.       if ( __this_byte )
  341.         return __j*CHAR_BIT + _First_one<true>::_S_first_one[__this_byte];
  342.       __thisword >>= CHAR_BIT;
  343.     }
  344.   }
  345.   // not found, so return a value that indicates failure.
  346.   return __not_found;
  347. } // end _M_do_find_next
  348. // ------------------------------------------------------------
  349. // Helper class to zero out the unused high-order bits in the highest word.
  350. template <size_t _Extrabits> struct _Sanitize {
  351.   static void _M_do_sanitize(unsigned long& __val)
  352.     { __val &= ~((~static_cast<unsigned long>(0)) << _Extrabits); }
  353. };
  354. __STL_TEMPLATE_NULL struct _Sanitize<0> {
  355.   static void _M_do_sanitize(unsigned long) {}
  356. };
  357. // ------------------------------------------------------------
  358. // Class bitset.
  359. //   _Nb may be any nonzero number of type size_t.
  360. template<size_t _Nb>
  361. class bitset : private _Base_bitset<__BITSET_WORDS(_Nb)>
  362. {
  363. private:
  364.   typedef _Base_bitset<__BITSET_WORDS(_Nb)> _Base;
  365.   typedef unsigned long _WordT;
  366. private:
  367.   void _M_do_sanitize() {
  368.     _Sanitize<_Nb%__BITS_PER_WORD>::_M_do_sanitize(this->_M_hiword());
  369.   }
  370. public:
  371.   // bit reference:
  372.   class reference;
  373.   friend class reference;
  374.   class reference {
  375.     friend class bitset;
  376.     _WordT *_M_wp;
  377.     size_t _M_bpos;
  378.     // left undefined
  379.     reference();
  380.   public:
  381.     reference( bitset& __b, size_t __pos ) {
  382.       _M_wp = &__b._M_getword(__pos);
  383.       _M_bpos = _Base::_S_whichbit(__pos);
  384.     }
  385.     ~reference() {}
  386.     // for b[i] = __x;
  387.     reference& operator=(bool __x) {
  388.       if ( __x )
  389.         *_M_wp |= _Base::_S_maskbit(_M_bpos);
  390.       else
  391.         *_M_wp &= ~_Base::_S_maskbit(_M_bpos);
  392.       return *this;
  393.     }
  394.     // for b[i] = b[__j];
  395.     reference& operator=(const reference& __j) {
  396.       if ( (*(__j._M_wp) & _Base::_S_maskbit(__j._M_bpos)) )
  397.         *_M_wp |= _Base::_S_maskbit(_M_bpos);
  398.       else
  399.         *_M_wp &= ~_Base::_S_maskbit(_M_bpos);
  400.       return *this;
  401.     }
  402.     // flips the bit
  403.     bool operator~() const
  404.       { return (*(_M_wp) & _Base::_S_maskbit(_M_bpos)) == 0; }
  405.     // for __x = b[i];
  406.     operator bool() const
  407.       { return (*(_M_wp) & _Base::_S_maskbit(_M_bpos)) != 0; }
  408.     // for b[i].flip();
  409.     reference& flip() {
  410.       *_M_wp ^= _Base::_S_maskbit(_M_bpos);
  411.       return *this;
  412.     }
  413.   };
  414.   // 23.3.5.1 constructors:
  415.   bitset() {}
  416.   bitset(unsigned long __val) : _Base_bitset<__BITSET_WORDS(_Nb)>(__val) 
  417.     { _M_do_sanitize(); }
  418. #ifdef __STL_MEMBER_TEMPLATES
  419.   template<class _CharT, class _Traits, class _Alloc>
  420.   explicit bitset(const basic_string<_CharT, _Traits, _Alloc>& __s,
  421.                   size_t __pos = 0)
  422.     : _Base() 
  423.   {
  424.     if (__pos > __s.size()) 
  425.       __STL_THROW(out_of_range("bitset"));
  426.     _M_copy_from_string(__s, __pos,
  427.                         basic_string<_CharT, _Traits, _Alloc>::npos);
  428.   }
  429.   template<class _CharT, class _Traits, class _Alloc>
  430.   bitset(const basic_string<_CharT, _Traits, _Alloc>& __s,
  431.          size_t __pos,
  432.          size_t __n)
  433.     : _Base() 
  434.   {
  435.     if (__pos > __s.size()) 
  436.       __STL_THROW(out_of_range("bitset"));
  437.     _M_copy_from_string(__s, __pos, __n);
  438.   }
  439. #else /* __STL_MEMBER_TEMPLATES */
  440.   explicit bitset(const basic_string<char>& __s,
  441.                   size_t __pos = 0,
  442.                   size_t __n = basic_string<char>::npos) 
  443.     : _Base() 
  444.   {
  445.     if (__pos > __s.size()) 
  446.       __STL_THROW(out_of_range("bitset"));
  447.     _M_copy_from_string(__s, __pos, __n);
  448.   }
  449. #endif /* __STL_MEMBER_TEMPLATES */
  450.   // 23.3.5.2 bitset operations:
  451.   bitset<_Nb>& operator&=(const bitset<_Nb>& __rhs) {
  452.     this->_M_do_and(__rhs);
  453.     return *this;
  454.   }
  455.   bitset<_Nb>& operator|=(const bitset<_Nb>& __rhs) {
  456.     this->_M_do_or(__rhs);
  457.     return *this;
  458.   }
  459.   bitset<_Nb>& operator^=(const bitset<_Nb>& __rhs) {
  460.     this->_M_do_xor(__rhs);
  461.     return *this;
  462.   }
  463.   bitset<_Nb>& operator<<=(size_t __pos) {
  464.     this->_M_do_left_shift(__pos);
  465.     this->_M_do_sanitize();
  466.     return *this;
  467.   }
  468.   bitset<_Nb>& operator>>=(size_t __pos) {
  469.     this->_M_do_right_shift(__pos);
  470.     this->_M_do_sanitize();
  471.     return *this;
  472.   }
  473.   //
  474.   // Extension:
  475.   // Versions of single-bit set, reset, flip, test with no range checking.
  476.   //
  477.   bitset<_Nb>& _Unchecked_set(size_t __pos) {
  478.     this->_M_getword(__pos) |= _Base::_S_maskbit(__pos);
  479.     return *this;
  480.   }
  481.   bitset<_Nb>& _Unchecked_set(size_t __pos, int __val) {
  482.     if (__val)
  483.       this->_M_getword(__pos) |= _Base::_S_maskbit(__pos);
  484.     else
  485.       this->_M_getword(__pos) &= ~_Base::_S_maskbit(__pos);
  486.     return *this;
  487.   }
  488.   bitset<_Nb>& _Unchecked_reset(size_t __pos) {
  489.     this->_M_getword(__pos) &= ~_Base::_S_maskbit(__pos);
  490.     return *this;
  491.   }
  492.   bitset<_Nb>& _Unchecked_flip(size_t __pos) {
  493.     this->_M_getword(__pos) ^= _Base::_S_maskbit(__pos);
  494.     return *this;
  495.   }
  496.   bool _Unchecked_test(size_t __pos) const {
  497.     return (this->_M_getword(__pos) & _Base::_S_maskbit(__pos))
  498.       != static_cast<_WordT>(0);
  499.   }
  500.   // Set, reset, and flip.
  501.   bitset<_Nb>& set() {
  502.     this->_M_do_set();
  503.     this->_M_do_sanitize();
  504.     return *this;
  505.   }
  506.   bitset<_Nb>& set(size_t __pos) {
  507.     if (__pos >= _Nb)
  508.       __STL_THROW(out_of_range("bitset"));
  509.     return _Unchecked_set(__pos);
  510.   }
  511.   bitset<_Nb>& set(size_t __pos, int __val) {
  512.     if (__pos >= _Nb)
  513.       __STL_THROW(out_of_range("bitset"));
  514.     return _Unchecked_set(__pos, __val);
  515.   }
  516.   bitset<_Nb>& reset() {
  517.     this->_M_do_reset();
  518.     return *this;
  519.   }
  520.   bitset<_Nb>& reset(size_t __pos) {
  521.     if (__pos >= _Nb)
  522.       __STL_THROW(out_of_range("bitset"));
  523.     return _Unchecked_reset(__pos);
  524.   }
  525.   bitset<_Nb>& flip() {
  526.     this->_M_do_flip();
  527.     this->_M_do_sanitize();
  528.     return *this;
  529.   }
  530.   bitset<_Nb>& flip(size_t __pos) {
  531.     if (__pos >= _Nb)
  532.       __STL_THROW(out_of_range("bitset"));
  533.     return _Unchecked_flip(__pos);
  534.   }
  535.   bitset<_Nb> operator~() const { 
  536.     return bitset<_Nb>(*this).flip();
  537.   }
  538.   // element access:
  539.   //for b[i];
  540.   reference operator[](size_t __pos) { return reference(*this,__pos); }
  541.   bool operator[](size_t __pos) const { return _Unchecked_test(__pos); }
  542.   unsigned long to_ulong() const { return this->_M_do_to_ulong(); }
  543. #if defined(__STL_MEMBER_TEMPLATES) && 
  544.     defined(__STL_EXPLICIT_FUNCTION_TMPL_ARGS)
  545.   template <class _CharT, class _Traits, class _Alloc>
  546.   basic_string<_CharT, _Traits, _Alloc> to_string() const {
  547.     basic_string<_CharT, _Traits, _Alloc> __result;
  548.     _M_copy_to_string(__result);
  549.     return __result;
  550.   }
  551. #endif /* member templates and explicit function template args */
  552.   // Helper functions for string operations.
  553. #ifdef __STL_MEMBER_TEMPLATES
  554.   template<class _CharT, class _Traits, class _Alloc>
  555.   void _M_copy_from_string(const basic_string<_CharT,_Traits,_Alloc>& __s,
  556.                           size_t,
  557.                           size_t);
  558.   template<class _CharT, class _Traits, class _Alloc>
  559.   void _M_copy_to_string(basic_string<_CharT,_Traits,_Alloc>&) const;
  560. #else /* __STL_MEMBER_TEMPLATES */
  561.   void _M_copy_from_string(const basic_string<char>&, size_t, size_t);
  562.   void _M_copy_to_string(basic_string<char>&) const;
  563. #endif /* __STL_MEMBER_TEMPLATES */
  564.   size_t count() const { return this->_M_do_count(); }
  565.   size_t size() const { return _Nb; }
  566.   bool operator==(const bitset<_Nb>& __rhs) const {
  567.     return this->_M_is_equal(__rhs);
  568.   }
  569.   bool operator!=(const bitset<_Nb>& __rhs) const {
  570.     return !this->_M_is_equal(__rhs);
  571.   }
  572.   bool test(size_t __pos) const {
  573.     if (__pos > _Nb)
  574.       __STL_THROW(out_of_range("bitset"));
  575.     return _Unchecked_test(__pos);
  576.   }
  577.   bool any() const { return this->_M_is_any(); }
  578.   bool none() const { return !this->_M_is_any(); }
  579.   bitset<_Nb> operator<<(size_t __pos) const
  580.     { return bitset<_Nb>(*this) <<= __pos; }
  581.   bitset<_Nb> operator>>(size_t __pos) const
  582.     { return bitset<_Nb>(*this) >>= __pos; }
  583.   //
  584.   // EXTENSIONS: bit-find operations.  These operations are
  585.   // experimental, and are subject to change or removal in future
  586.   // versions.
  587.   // 
  588.   // find the index of the first "on" bit
  589.   size_t _Find_first() const 
  590.     { return this->_M_do_find_first(_Nb); }
  591.   // find the index of the next "on" bit after prev
  592.   size_t _Find_next( size_t __prev ) const 
  593.     { return this->_M_do_find_next(__prev, _Nb); }
  594. };
  595. //
  596. // Definitions of non-inline member functions.
  597. //
  598. #ifdef __STL_MEMBER_TEMPLATES
  599. template <size_t _Nb>
  600. template<class _CharT, class _Traits, class _Alloc>
  601. void bitset<_Nb>
  602.   ::_M_copy_from_string(const basic_string<_CharT,_Traits,_Alloc>& __s,
  603.                         size_t __pos,
  604.                         size_t __n)
  605. {
  606.   reset();
  607.   const size_t __nbits = min(_Nb, min(__n, __s.size() - __pos));
  608.   for (size_t __i = 0; __i < __nbits; ++__i) {
  609.     switch(__s[__pos + __nbits - __i - 1]) {
  610.     case '0':
  611.       break;
  612.     case '1':
  613.       set(__i);
  614.       break;
  615.     default:
  616.       __STL_THROW(invalid_argument("bitset"));
  617.     }
  618.   }
  619. }
  620. template <size_t _Nb>
  621. template <class _CharT, class _Traits, class _Alloc>
  622. void bitset<_Nb>
  623.   ::_M_copy_to_string(basic_string<_CharT, _Traits, _Alloc>& __s) const
  624. {
  625.   __s.assign(_Nb, '0');
  626.   
  627.   for (size_t __i = 0; __i < _Nb; ++__i) 
  628.     if (_Unchecked_test(__i))
  629.       __s[_Nb - 1 - __i] = '1';
  630. }
  631. #else /* __STL_MEMBER_TEMPLATES */
  632. template <size_t _Nb>
  633. void bitset<_Nb>::_M_copy_from_string(const basic_string<char>& __s,
  634.                                       size_t __pos, size_t __n)
  635. {
  636.   reset();
  637.   size_t __tmp = _Nb;
  638.   const size_t __nbits = min(__tmp, min(__n, __s.size() - __pos));
  639.   for (size_t __i = 0; __i < __nbits; ++__i) {
  640.     switch(__s[__pos + __nbits - __i - 1]) {
  641.     case '0':
  642.       break;
  643.     case '1':
  644.       set(__i);
  645.       break;
  646.     default:
  647.       __STL_THROW(invalid_argument("bitset"));
  648.     }
  649.   }
  650. }
  651. template <size_t _Nb>
  652. void bitset<_Nb>::_M_copy_to_string(basic_string<char>& __s) const
  653. {
  654.   __s.assign(_Nb, '0');
  655.   
  656.   for (size_t __i = 0; __i < _Nb; ++__i) 
  657.     if (_Unchecked_test(__i))
  658.       __s[_Nb - 1 - __i] = '1';
  659. }
  660. #endif /* __STL_MEMBER_TEMPLATES */
  661. // ------------------------------------------------------------
  662. //
  663. // 23.3.5.3 bitset operations:
  664. //
  665. template <size_t _Nb>
  666. inline bitset<_Nb> operator&(const bitset<_Nb>& __x, const bitset<_Nb>& __y) {
  667.   bitset<_Nb> __result(__x);
  668.   __result &= __y;
  669.   return __result;
  670. }
  671. template <size_t _Nb>
  672. inline bitset<_Nb> operator|(const bitset<_Nb>& __x, const bitset<_Nb>& __y) {
  673.   bitset<_Nb> __result(__x);
  674.   __result |= __y;
  675.   return __result;
  676. }
  677. template <size_t _Nb>
  678. inline bitset<_Nb> operator^(const bitset<_Nb>& __x, const bitset<_Nb>& __y) {
  679.   bitset<_Nb> __result(__x);
  680.   __result ^= __y;
  681.   return __result;
  682. }
  683. #ifdef __STL_USE_NEW_IOSTREAMS
  684. template <class _CharT, class _Traits, size_t _Nb>
  685. basic_istream<_CharT, _Traits>&
  686. operator>>(basic_istream<_CharT, _Traits>& __is, bitset<_Nb>& __x)
  687. {
  688.   basic_string<_CharT, _Traits> __tmp;
  689.   __tmp.reserve(_Nb);
  690.   // Skip whitespace
  691.   typename basic_istream<_CharT, _Traits>::sentry __sentry(__is);
  692.   if (__sentry) {
  693.     basic_streambuf<_CharT, _Traits>* __buf = __is.rdbuf();
  694.     for (size_t __i = 0; __i < _Nb; ++__i) {
  695.       static _Traits::int_type __eof = _Traits::eof();
  696.       typename _Traits::int_type __c1 = __buf->sbumpc();
  697.       if (_Traits::eq_int_type(__c1, __eof)) {
  698.         __is.setstate(ios_base::eofbit);
  699.         break;
  700.       }
  701.       else {
  702.         char __c2 = _Traits::to_char_type(__c1);
  703.         char __c  = __is.narrow(__c2, '*');
  704.         if (__c == '0' || __c == '1')
  705.           __tmp.push_back(__c);
  706.         else if (_Traits::eq_int_type(__buf->sputbackc(__c2), __eof)) {
  707.           __is.setstate(ios_base::failbit);
  708.           break;
  709.         }
  710.       }
  711.     }
  712.     if (__tmp.empty())
  713.       __is.setstate(ios_base::failbit);
  714.     else
  715.       __x._M_copy_from_string(__tmp, static_cast<size_t>(0), _Nb);
  716.   }
  717.   return __is;
  718. }
  719. template <class _CharT, class _Traits, size_t _Nb>
  720. basic_ostream<_CharT, _Traits>&
  721. operator<<(basic_ostream<_CharT, _Traits>& __os, const bitset<_Nb>& __x)
  722. {
  723.   basic_string<_CharT, _Traits> __tmp;
  724.   __x._M_copy_to_string(__tmp);
  725.   return __os << __tmp;
  726. }
  727. #else /* __STL_USE_NEW_IOSTREAMS */
  728. template <size_t _Nb>
  729. istream& operator>>(istream& __is, bitset<_Nb>& __x) {
  730.   string __tmp;
  731.   __tmp.reserve(_Nb);
  732.   if (__is.flags() & ios::skipws) {
  733.     char __c;
  734.     do 
  735.       __is.get(__c);
  736.     while (__is && isspace(__c));
  737.     if (__is)
  738.       __is.putback(__c);
  739.   }
  740.   for (size_t __i = 0; __i < _Nb; ++__i) {
  741.     char __c;
  742.     __is.get(__c);
  743.     if (!__is)
  744.       break;
  745.     else if (__c != '0' && __c != '1') {
  746.       __is.putback(__c);
  747.       break;
  748.     }
  749.     else
  750.       __tmp.push_back(__c);
  751.   }
  752.   if (__tmp.empty()) 
  753.     __is.clear(__is.rdstate() | ios::failbit);
  754.   else
  755.     __x._M_copy_from_string(__tmp, static_cast<size_t>(0), _Nb);
  756.   return __is;
  757. }
  758. template <size_t _Nb>
  759. ostream& operator<<(ostream& __os, const bitset<_Nb>& __x) {
  760.   string __tmp;
  761.   __x._M_copy_to_string(__tmp);
  762.   return __os << __tmp;
  763. }
  764. #endif /* __STL_USE_NEW_IOSTREAMS */
  765. // ------------------------------------------------------------
  766. // Lookup tables for find and count operations.
  767. template<bool __dummy>
  768. unsigned char _Bit_count<__dummy>::_S_bit_count[] = {
  769.   0, /*   0 */ 1, /*   1 */ 1, /*   2 */ 2, /*   3 */ 1, /*   4 */
  770.   2, /*   5 */ 2, /*   6 */ 3, /*   7 */ 1, /*   8 */ 2, /*   9 */
  771.   2, /*  10 */ 3, /*  11 */ 2, /*  12 */ 3, /*  13 */ 3, /*  14 */
  772.   4, /*  15 */ 1, /*  16 */ 2, /*  17 */ 2, /*  18 */ 3, /*  19 */
  773.   2, /*  20 */ 3, /*  21 */ 3, /*  22 */ 4, /*  23 */ 2, /*  24 */
  774.   3, /*  25 */ 3, /*  26 */ 4, /*  27 */ 3, /*  28 */ 4, /*  29 */
  775.   4, /*  30 */ 5, /*  31 */ 1, /*  32 */ 2, /*  33 */ 2, /*  34 */
  776.   3, /*  35 */ 2, /*  36 */ 3, /*  37 */ 3, /*  38 */ 4, /*  39 */
  777.   2, /*  40 */ 3, /*  41 */ 3, /*  42 */ 4, /*  43 */ 3, /*  44 */
  778.   4, /*  45 */ 4, /*  46 */ 5, /*  47 */ 2, /*  48 */ 3, /*  49 */
  779.   3, /*  50 */ 4, /*  51 */ 3, /*  52 */ 4, /*  53 */ 4, /*  54 */
  780.   5, /*  55 */ 3, /*  56 */ 4, /*  57 */ 4, /*  58 */ 5, /*  59 */
  781.   4, /*  60 */ 5, /*  61 */ 5, /*  62 */ 6, /*  63 */ 1, /*  64 */
  782.   2, /*  65 */ 2, /*  66 */ 3, /*  67 */ 2, /*  68 */ 3, /*  69 */
  783.   3, /*  70 */ 4, /*  71 */ 2, /*  72 */ 3, /*  73 */ 3, /*  74 */
  784.   4, /*  75 */ 3, /*  76 */ 4, /*  77 */ 4, /*  78 */ 5, /*  79 */
  785.   2, /*  80 */ 3, /*  81 */ 3, /*  82 */ 4, /*  83 */ 3, /*  84 */
  786.   4, /*  85 */ 4, /*  86 */ 5, /*  87 */ 3, /*  88 */ 4, /*  89 */
  787.   4, /*  90 */ 5, /*  91 */ 4, /*  92 */ 5, /*  93 */ 5, /*  94 */
  788.   6, /*  95 */ 2, /*  96 */ 3, /*  97 */ 3, /*  98 */ 4, /*  99 */
  789.   3, /* 100 */ 4, /* 101 */ 4, /* 102 */ 5, /* 103 */ 3, /* 104 */
  790.   4, /* 105 */ 4, /* 106 */ 5, /* 107 */ 4, /* 108 */ 5, /* 109 */
  791.   5, /* 110 */ 6, /* 111 */ 3, /* 112 */ 4, /* 113 */ 4, /* 114 */
  792.   5, /* 115 */ 4, /* 116 */ 5, /* 117 */ 5, /* 118 */ 6, /* 119 */
  793.   4, /* 120 */ 5, /* 121 */ 5, /* 122 */ 6, /* 123 */ 5, /* 124 */
  794.   6, /* 125 */ 6, /* 126 */ 7, /* 127 */ 1, /* 128 */ 2, /* 129 */
  795.   2, /* 130 */ 3, /* 131 */ 2, /* 132 */ 3, /* 133 */ 3, /* 134 */
  796.   4, /* 135 */ 2, /* 136 */ 3, /* 137 */ 3, /* 138 */ 4, /* 139 */
  797.   3, /* 140 */ 4, /* 141 */ 4, /* 142 */ 5, /* 143 */ 2, /* 144 */
  798.   3, /* 145 */ 3, /* 146 */ 4, /* 147 */ 3, /* 148 */ 4, /* 149 */
  799.   4, /* 150 */ 5, /* 151 */ 3, /* 152 */ 4, /* 153 */ 4, /* 154 */
  800.   5, /* 155 */ 4, /* 156 */ 5, /* 157 */ 5, /* 158 */ 6, /* 159 */
  801.   2, /* 160 */ 3, /* 161 */ 3, /* 162 */ 4, /* 163 */ 3, /* 164 */
  802.   4, /* 165 */ 4, /* 166 */ 5, /* 167 */ 3, /* 168 */ 4, /* 169 */
  803.   4, /* 170 */ 5, /* 171 */ 4, /* 172 */ 5, /* 173 */ 5, /* 174 */
  804.   6, /* 175 */ 3, /* 176 */ 4, /* 177 */ 4, /* 178 */ 5, /* 179 */
  805.   4, /* 180 */ 5, /* 181 */ 5, /* 182 */ 6, /* 183 */ 4, /* 184 */
  806.   5, /* 185 */ 5, /* 186 */ 6, /* 187 */ 5, /* 188 */ 6, /* 189 */
  807.   6, /* 190 */ 7, /* 191 */ 2, /* 192 */ 3, /* 193 */ 3, /* 194 */
  808.   4, /* 195 */ 3, /* 196 */ 4, /* 197 */ 4, /* 198 */ 5, /* 199 */
  809.   3, /* 200 */ 4, /* 201 */ 4, /* 202 */ 5, /* 203 */ 4, /* 204 */
  810.   5, /* 205 */ 5, /* 206 */ 6, /* 207 */ 3, /* 208 */ 4, /* 209 */
  811.   4, /* 210 */ 5, /* 211 */ 4, /* 212 */ 5, /* 213 */ 5, /* 214 */
  812.   6, /* 215 */ 4, /* 216 */ 5, /* 217 */ 5, /* 218 */ 6, /* 219 */
  813.   5, /* 220 */ 6, /* 221 */ 6, /* 222 */ 7, /* 223 */ 3, /* 224 */
  814.   4, /* 225 */ 4, /* 226 */ 5, /* 227 */ 4, /* 228 */ 5, /* 229 */
  815.   5, /* 230 */ 6, /* 231 */ 4, /* 232 */ 5, /* 233 */ 5, /* 234 */
  816.   6, /* 235 */ 5, /* 236 */ 6, /* 237 */ 6, /* 238 */ 7, /* 239 */
  817.   4, /* 240 */ 5, /* 241 */ 5, /* 242 */ 6, /* 243 */ 5, /* 244 */
  818.   6, /* 245 */ 6, /* 246 */ 7, /* 247 */ 5, /* 248 */ 6, /* 249 */
  819.   6, /* 250 */ 7, /* 251 */ 6, /* 252 */ 7, /* 253 */ 7, /* 254 */
  820.   8  /* 255 */
  821. }; // end _Bit_count
  822. template<bool __dummy>
  823. unsigned char _First_one<__dummy>::_S_first_one[] = {
  824.   0, /*   0 */ 0, /*   1 */ 1, /*   2 */ 0, /*   3 */ 2, /*   4 */
  825.   0, /*   5 */ 1, /*   6 */ 0, /*   7 */ 3, /*   8 */ 0, /*   9 */
  826.   1, /*  10 */ 0, /*  11 */ 2, /*  12 */ 0, /*  13 */ 1, /*  14 */
  827.   0, /*  15 */ 4, /*  16 */ 0, /*  17 */ 1, /*  18 */ 0, /*  19 */
  828.   2, /*  20 */ 0, /*  21 */ 1, /*  22 */ 0, /*  23 */ 3, /*  24 */
  829.   0, /*  25 */ 1, /*  26 */ 0, /*  27 */ 2, /*  28 */ 0, /*  29 */
  830.   1, /*  30 */ 0, /*  31 */ 5, /*  32 */ 0, /*  33 */ 1, /*  34 */
  831.   0, /*  35 */ 2, /*  36 */ 0, /*  37 */ 1, /*  38 */ 0, /*  39 */
  832.   3, /*  40 */ 0, /*  41 */ 1, /*  42 */ 0, /*  43 */ 2, /*  44 */
  833.   0, /*  45 */ 1, /*  46 */ 0, /*  47 */ 4, /*  48 */ 0, /*  49 */
  834.   1, /*  50 */ 0, /*  51 */ 2, /*  52 */ 0, /*  53 */ 1, /*  54 */
  835.   0, /*  55 */ 3, /*  56 */ 0, /*  57 */ 1, /*  58 */ 0, /*  59 */
  836.   2, /*  60 */ 0, /*  61 */ 1, /*  62 */ 0, /*  63 */ 6, /*  64 */
  837.   0, /*  65 */ 1, /*  66 */ 0, /*  67 */ 2, /*  68 */ 0, /*  69 */
  838.   1, /*  70 */ 0, /*  71 */ 3, /*  72 */ 0, /*  73 */ 1, /*  74 */
  839.   0, /*  75 */ 2, /*  76 */ 0, /*  77 */ 1, /*  78 */ 0, /*  79 */
  840.   4, /*  80 */ 0, /*  81 */ 1, /*  82 */ 0, /*  83 */ 2, /*  84 */
  841.   0, /*  85 */ 1, /*  86 */ 0, /*  87 */ 3, /*  88 */ 0, /*  89 */
  842.   1, /*  90 */ 0, /*  91 */ 2, /*  92 */ 0, /*  93 */ 1, /*  94 */
  843.   0, /*  95 */ 5, /*  96 */ 0, /*  97 */ 1, /*  98 */ 0, /*  99 */
  844.   2, /* 100 */ 0, /* 101 */ 1, /* 102 */ 0, /* 103 */ 3, /* 104 */
  845.   0, /* 105 */ 1, /* 106 */ 0, /* 107 */ 2, /* 108 */ 0, /* 109 */
  846.   1, /* 110 */ 0, /* 111 */ 4, /* 112 */ 0, /* 113 */ 1, /* 114 */
  847.   0, /* 115 */ 2, /* 116 */ 0, /* 117 */ 1, /* 118 */ 0, /* 119 */
  848.   3, /* 120 */ 0, /* 121 */ 1, /* 122 */ 0, /* 123 */ 2, /* 124 */
  849.   0, /* 125 */ 1, /* 126 */ 0, /* 127 */ 7, /* 128 */ 0, /* 129 */
  850.   1, /* 130 */ 0, /* 131 */ 2, /* 132 */ 0, /* 133 */ 1, /* 134 */
  851.   0, /* 135 */ 3, /* 136 */ 0, /* 137 */ 1, /* 138 */ 0, /* 139 */
  852.   2, /* 140 */ 0, /* 141 */ 1, /* 142 */ 0, /* 143 */ 4, /* 144 */
  853.   0, /* 145 */ 1, /* 146 */ 0, /* 147 */ 2, /* 148 */ 0, /* 149 */
  854.   1, /* 150 */ 0, /* 151 */ 3, /* 152 */ 0, /* 153 */ 1, /* 154 */
  855.   0, /* 155 */ 2, /* 156 */ 0, /* 157 */ 1, /* 158 */ 0, /* 159 */
  856.   5, /* 160 */ 0, /* 161 */ 1, /* 162 */ 0, /* 163 */ 2, /* 164 */
  857.   0, /* 165 */ 1, /* 166 */ 0, /* 167 */ 3, /* 168 */ 0, /* 169 */
  858.   1, /* 170 */ 0, /* 171 */ 2, /* 172 */ 0, /* 173 */ 1, /* 174 */
  859.   0, /* 175 */ 4, /* 176 */ 0, /* 177 */ 1, /* 178 */ 0, /* 179 */
  860.   2, /* 180 */ 0, /* 181 */ 1, /* 182 */ 0, /* 183 */ 3, /* 184 */
  861.   0, /* 185 */ 1, /* 186 */ 0, /* 187 */ 2, /* 188 */ 0, /* 189 */
  862.   1, /* 190 */ 0, /* 191 */ 6, /* 192 */ 0, /* 193 */ 1, /* 194 */
  863.   0, /* 195 */ 2, /* 196 */ 0, /* 197 */ 1, /* 198 */ 0, /* 199 */
  864.   3, /* 200 */ 0, /* 201 */ 1, /* 202 */ 0, /* 203 */ 2, /* 204 */
  865.   0, /* 205 */ 1, /* 206 */ 0, /* 207 */ 4, /* 208 */ 0, /* 209 */
  866.   1, /* 210 */ 0, /* 211 */ 2, /* 212 */ 0, /* 213 */ 1, /* 214 */
  867.   0, /* 215 */ 3, /* 216 */ 0, /* 217 */ 1, /* 218 */ 0, /* 219 */
  868.   2, /* 220 */ 0, /* 221 */ 1, /* 222 */ 0, /* 223 */ 5, /* 224 */
  869.   0, /* 225 */ 1, /* 226 */ 0, /* 227 */ 2, /* 228 */ 0, /* 229 */
  870.   1, /* 230 */ 0, /* 231 */ 3, /* 232 */ 0, /* 233 */ 1, /* 234 */
  871.   0, /* 235 */ 2, /* 236 */ 0, /* 237 */ 1, /* 238 */ 0, /* 239 */
  872.   4, /* 240 */ 0, /* 241 */ 1, /* 242 */ 0, /* 243 */ 2, /* 244 */
  873.   0, /* 245 */ 1, /* 246 */ 0, /* 247 */ 3, /* 248 */ 0, /* 249 */
  874.   1, /* 250 */ 0, /* 251 */ 2, /* 252 */ 0, /* 253 */ 1, /* 254 */
  875.   0, /* 255 */
  876. }; // end _First_one
  877. #if defined(__sgi) && !defined(__GNUC__) && (_MIPS_SIM != _MIPS_SIM_ABI32)
  878. #pragma reset woff 1209
  879. #endif
  880. __STL_END_NAMESPACE
  881. #undef __BITS_PER_WORD
  882. #undef __BITSET_WORDS
  883. #endif /* __SGI_STL_BITSET */
  884. // Local Variables:
  885. // mode:C++
  886. // End: