blob: 7ec860e392768e58be338f80308ca03e28f5fd65 [file] [log] [blame]
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001// -*- C++ -*-
2//===---------------------------- bitset ----------------------------------===//
3//
Howard Hinnantf5256e12010-05-11 21:36:01 +00004// The LLVM Compiler Infrastructure
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005//
6// This file is distributed under the University of Illinois Open Source
7// License. See LICENSE.TXT for details.
8//
9//===----------------------------------------------------------------------===//
10
11#ifndef _LIBCPP_BITSET
12#define _LIBCPP_BITSET
13
14/*
15 bitset synopsis
16
17namespace std
18{
19
20namespace std {
21
22template <size_t N>
23class bitset
24{
25public:
26 // bit reference:
27 class reference
28 {
29 friend class bitset;
30 reference();
31 public:
32 ~reference();
33 reference& operator=(bool x); // for b[i] = x;
34 reference& operator=(const reference&); // for b[i] = b[j];
35 bool operator~() const; // flips the bit
36 operator bool() const; // for x = b[i];
37 reference& flip(); // for b[i].flip();
38 };
39
40 // 23.3.5.1 constructors:
41 constexpr bitset();
42 constexpr bitset(unsigned long long val);
43 explicit bitset( const char* str );
44 template<class charT, class traits, class Allocator>
45 explicit bitset(const basic_string<charT,traits,Allocator>& str,
46 typename basic_string<charT,traits,Allocator>::size_type pos = 0,
47 typename basic_string<charT,traits,Allocator>::size_type n =
48 basic_string<charT,traits,Allocator>::npos,
49 charT zero = charT('0'), charT one = charT('1'));
50
51 // 23.3.5.2 bitset operations:
52 bitset& operator&=(const bitset& rhs);
53 bitset& operator|=(const bitset& rhs);
54 bitset& operator^=(const bitset& rhs);
55 bitset& operator<<=(size_t pos);
56 bitset& operator>>=(size_t pos);
57 bitset& set();
58 bitset& set(size_t pos, bool val = true);
59 bitset& reset();
60 bitset& reset(size_t pos);
61 bitset operator~() const;
62 bitset& flip();
63 bitset& flip(size_t pos);
64
65 // element access:
66 constexpr bool operator[](size_t pos) const; // for b[i];
67 reference operator[](size_t pos); // for b[i];
68 unsigned long to_ulong() const;
69 unsigned long long to_ullong() const;
70 template <class charT, class traits, class Allocator>
71 basic_string<charT, traits, Allocator> to_string(charT zero = charT('0'), charT one = charT('1')) const;
72 template <class charT, class traits>
73 basic_string<charT, traits, allocator<charT> > to_string(charT zero = charT('0'), charT one = charT('1')) const;
74 template <class charT>
75 basic_string<charT, char_traits<charT>, allocator<charT> > to_string(charT zero = charT('0'), charT one = charT('1')) const;
76 basic_string<char, char_traits<char>, allocator<char> > to_string(char zero = '0', char one = '1') const;
77 size_t count() const;
78 constexpr size_t size() const;
79 bool operator==(const bitset& rhs) const;
80 bool operator!=(const bitset& rhs) const;
81 bool test(size_t pos) const;
82 bool all() const;
83 bool any() const;
84 bool none() const;
85 bitset operator<<(size_t pos) const;
86 bitset operator>>(size_t pos) const;
87};
88
89// 23.3.5.3 bitset operators:
90template <size_t N>
91bitset<N> operator&(const bitset<N>&, const bitset<N>&);
92
93template <size_t N>
94bitset<N> operator|(const bitset<N>&, const bitset<N>&);
95
96template <size_t N>
97bitset<N> operator^(const bitset<N>&, const bitset<N>&);
98
99template <class charT, class traits, size_t N>
100basic_istream<charT, traits>&
101operator>>(basic_istream<charT, traits>& is, bitset<N>& x);
102
103template <class charT, class traits, size_t N>
104basic_ostream<charT, traits>&
105operator<<(basic_ostream<charT, traits>& os, const bitset<N>& x);
106
107template <size_t N> struct hash<std::bitset<N>>;
108
109} // std
110
111*/
112
113#pragma GCC system_header
114
115#include <__config>
116#include <__bit_reference>
117#include <cstddef>
118#include <climits>
119#include <string>
120#include <stdexcept>
121#include <iosfwd>
122#include <__functional_base>
123#if defined(_LIBCPP_NO_EXCEPTIONS)
124 #include <cassert>
125#endif
126
127_LIBCPP_BEGIN_NAMESPACE_STD
128
129template <size_t _N_words, size_t _Size>
130class __bitset
131{
132public:
133 typedef ptrdiff_t difference_type;
134 typedef size_t size_type;
135protected:
136 typedef __bitset __self;
137 typedef size_type __storage_type;
138 typedef __storage_type* __storage_pointer;
139 typedef const __storage_type* __const_storage_pointer;
140 static const unsigned __bits_per_word = static_cast<unsigned>(sizeof(__storage_type) * CHAR_BIT);
141
142 friend class __bit_reference<__bitset>;
143 friend class __bit_const_reference<__bitset>;
144 friend class __bit_iterator<__bitset, false>;
145 friend class __bit_iterator<__bitset, true>;
146 friend class __bit_array<__bitset>;
147
148 __storage_type __first_[_N_words];
149
150 typedef __bit_reference<__bitset> reference;
151 typedef __bit_const_reference<__bitset> const_reference;
152 typedef __bit_iterator<__bitset, false> iterator;
153 typedef __bit_iterator<__bitset, true> const_iterator;
154
155 __bitset();
156 explicit __bitset(unsigned long long __v);
157
158 _LIBCPP_INLINE_VISIBILITY reference __make_ref(size_t __pos)
159 {return reference(__first_ + __pos / __bits_per_word, __storage_type(1) << __pos % __bits_per_word);}
160 _LIBCPP_INLINE_VISIBILITY const_reference __make_ref(size_t __pos) const
161 {return const_reference(__first_ + __pos / __bits_per_word, __storage_type(1) << __pos % __bits_per_word);}
162 _LIBCPP_INLINE_VISIBILITY iterator __make_iter(size_t __pos)
163 {return iterator(__first_ + __pos / __bits_per_word, __pos % __bits_per_word);}
164 _LIBCPP_INLINE_VISIBILITY const_iterator __make_iter(size_t __pos) const
165 {return const_iterator(__first_ + __pos / __bits_per_word, __pos % __bits_per_word);}
166
167 void operator&=(const __bitset& __v);
168 void operator|=(const __bitset& __v);
169 void operator^=(const __bitset& __v);
170
171 void flip();
172 _LIBCPP_INLINE_VISIBILITY unsigned long to_ulong() const
173 {return to_ulong(integral_constant<bool, _Size < sizeof(unsigned long) * CHAR_BIT>());}
174 _LIBCPP_INLINE_VISIBILITY unsigned long long to_ullong() const
175 {return to_ullong(integral_constant<bool, _Size < sizeof(unsigned long long) * CHAR_BIT>());}
176
177 bool all() const;
178 bool any() const;
179 size_t __hash_code() const;
180private:
181 void __init(unsigned long long __v, false_type);
182 void __init(unsigned long long __v, true_type);
183 unsigned long to_ulong(false_type) const;
184 unsigned long to_ulong(true_type) const;
185 unsigned long long to_ullong(false_type) const;
186 unsigned long long to_ullong(true_type) const;
187 unsigned long long to_ullong(true_type, false_type) const;
188 unsigned long long to_ullong(true_type, true_type) const;
189};
190
191template <size_t _N_words, size_t _Size>
192inline _LIBCPP_INLINE_VISIBILITY
193__bitset<_N_words, _Size>::__bitset()
194{
195 _STD::fill_n(__first_, _N_words, __storage_type(0));
196}
197
198template <size_t _N_words, size_t _Size>
199void
200__bitset<_N_words, _Size>::__init(unsigned long long __v, false_type)
201{
202 __storage_type __t[sizeof(unsigned long long) / sizeof(__storage_type)];
203 for (size_t __i = 0; __i < sizeof(__t)/sizeof(__t[0]); ++__i, __v >>= __bits_per_word)
204 __t[__i] = static_cast<__storage_type>(__v);
205 _STD::copy(__t, __t + sizeof(__t)/sizeof(__t[0]), __first_);
206 _STD::fill(__first_ + sizeof(__t)/sizeof(__t[0]), __first_ + sizeof(__first_)/sizeof(__first_[0]),
207 __storage_type(0));
208}
209
210template <size_t _N_words, size_t _Size>
211inline _LIBCPP_INLINE_VISIBILITY
212void
213__bitset<_N_words, _Size>::__init(unsigned long long __v, true_type)
214{
215 __first_[0] = __v;
216 _STD::fill(__first_ + 1, __first_ + sizeof(__first_)/sizeof(__first_[0]), __storage_type(0));
217}
218
219template <size_t _N_words, size_t _Size>
220inline _LIBCPP_INLINE_VISIBILITY
221__bitset<_N_words, _Size>::__bitset(unsigned long long __v)
222{
223 __init(__v, integral_constant<bool, sizeof(unsigned long long) == sizeof(__storage_type)>());
224}
225
226template <size_t _N_words, size_t _Size>
227inline _LIBCPP_INLINE_VISIBILITY
228void
229__bitset<_N_words, _Size>::operator&=(const __bitset& __v)
230{
231 for (size_type __i = 0; __i < _N_words; ++__i)
232 __first_[__i] &= __v.__first_[__i];
233}
234
235template <size_t _N_words, size_t _Size>
236inline _LIBCPP_INLINE_VISIBILITY
237void
238__bitset<_N_words, _Size>::operator|=(const __bitset& __v)
239{
240 for (size_type __i = 0; __i < _N_words; ++__i)
241 __first_[__i] |= __v.__first_[__i];
242}
243
244template <size_t _N_words, size_t _Size>
245inline _LIBCPP_INLINE_VISIBILITY
246void
247__bitset<_N_words, _Size>::operator^=(const __bitset& __v)
248{
249 for (size_type __i = 0; __i < _N_words; ++__i)
250 __first_[__i] ^= __v.__first_[__i];
251}
252
253template <size_t _N_words, size_t _Size>
254void
255__bitset<_N_words, _Size>::flip()
256{
257 // do middle whole words
258 size_type __n = _Size;
259 __storage_pointer __p = __first_;
260 for (; __n >= __bits_per_word; ++__p, __n -= __bits_per_word)
261 *__p = ~*__p;
262 // do last partial word
263 if (__n > 0)
264 {
265 __storage_type __m = ~__storage_type(0) >> (__bits_per_word - __n);
266 __storage_type __b = *__p & __m;
267 *__p &= ~__m;
268 *__p |= ~__b & __m;
269 }
270}
271
272template <size_t _N_words, size_t _Size>
273unsigned long
274__bitset<_N_words, _Size>::to_ulong(false_type) const
275{
276 const_iterator __e = __make_iter(_Size);
277 const_iterator __i = _STD::find(__make_iter(sizeof(unsigned long) * CHAR_BIT), __e, true);
278 if (__i != __e)
279#ifndef _LIBCPP_NO_EXCEPTIONS
280 throw overflow_error("bitset to_ulong overflow error");
281#else
282 assert(!"bitset to_ulong overflow error");
283#endif
284 return __first_[0];
285}
286
287template <size_t _N_words, size_t _Size>
288inline _LIBCPP_INLINE_VISIBILITY
289unsigned long
290__bitset<_N_words, _Size>::to_ulong(true_type) const
291{
292 return __first_[0];
293}
294
295template <size_t _N_words, size_t _Size>
296unsigned long long
297__bitset<_N_words, _Size>::to_ullong(false_type) const
298{
299 const_iterator __e = __make_iter(_Size);
300 const_iterator __i = _STD::find(__make_iter(sizeof(unsigned long long) * CHAR_BIT), __e, true);
301 if (__i != __e)
302#ifndef _LIBCPP_NO_EXCEPTIONS
303 throw overflow_error("bitset to_ullong overflow error");
304#else
305 assert(!"bitset to_ullong overflow error");
306#endif
307 return to_ullong(true_type());
308}
309
310template <size_t _N_words, size_t _Size>
311inline _LIBCPP_INLINE_VISIBILITY
312unsigned long long
313__bitset<_N_words, _Size>::to_ullong(true_type) const
314{
315 return to_ullong(true_type(), integral_constant<bool, sizeof(__storage_type) < sizeof(unsigned long long)>());
316}
317
318template <size_t _N_words, size_t _Size>
319inline _LIBCPP_INLINE_VISIBILITY
320unsigned long long
321__bitset<_N_words, _Size>::to_ullong(true_type, false_type) const
322{
323 return __first_[0];
324}
325
326template <size_t _N_words, size_t _Size>
327unsigned long long
328__bitset<_N_words, _Size>::to_ullong(true_type, true_type) const
329{
330 unsigned long long __r = __first_[0];
331 for (std::size_t __i = 1; __i < sizeof(unsigned long long) / sizeof(__storage_type); ++__i)
332 __r |= static_cast<unsigned long long>(__first_[__i]) << (sizeof(__storage_type) * CHAR_BIT);
333 return __r;
334}
335
336template <size_t _N_words, size_t _Size>
337bool
338__bitset<_N_words, _Size>::all() const
339{
340 // do middle whole words
341 size_type __n = _Size;
342 __const_storage_pointer __p = __first_;
343 for (; __n >= __bits_per_word; ++__p, __n -= __bits_per_word)
344 if (~*__p)
345 return false;
346 // do last partial word
347 if (__n > 0)
348 {
349 __storage_type __m = ~__storage_type(0) >> (__bits_per_word - __n);
350 if (~*__p & __m)
351 return false;
352 }
353 return true;
354}
355
356template <size_t _N_words, size_t _Size>
357bool
358__bitset<_N_words, _Size>::any() const
359{
360 // do middle whole words
361 size_type __n = _Size;
362 __const_storage_pointer __p = __first_;
363 for (; __n >= __bits_per_word; ++__p, __n -= __bits_per_word)
364 if (*__p)
365 return true;
366 // do last partial word
367 if (__n > 0)
368 {
369 __storage_type __m = ~__storage_type(0) >> (__bits_per_word - __n);
370 if (*__p & __m)
371 return true;
372 }
373 return false;
374}
375
376template <size_t _N_words, size_t _Size>
377inline _LIBCPP_INLINE_VISIBILITY
378size_t
379__bitset<_N_words, _Size>::__hash_code() const
380{
381 size_t __h = 0;
382 for (size_type __i = 0; __i < _N_words; ++__i)
383 __h ^= __first_[__i];
384 return __h;
385}
386
387template <size_t _Size>
388class __bitset<1, _Size>
389{
390public:
391 typedef ptrdiff_t difference_type;
392 typedef size_t size_type;
393protected:
394 typedef __bitset __self;
395 typedef size_type __storage_type;
396 typedef __storage_type* __storage_pointer;
397 typedef const __storage_type* __const_storage_pointer;
398 static const unsigned __bits_per_word = static_cast<unsigned>(sizeof(__storage_type) * CHAR_BIT);
399
400 friend class __bit_reference<__bitset>;
401 friend class __bit_const_reference<__bitset>;
402 friend class __bit_iterator<__bitset, false>;
403 friend class __bit_iterator<__bitset, true>;
404 friend class __bit_array<__bitset>;
405
406 __storage_type __first_;
407
408 typedef __bit_reference<__bitset> reference;
409 typedef __bit_const_reference<__bitset> const_reference;
410 typedef __bit_iterator<__bitset, false> iterator;
411 typedef __bit_iterator<__bitset, true> const_iterator;
412
413 __bitset();
414 explicit __bitset(unsigned long long __v);
415
416 _LIBCPP_INLINE_VISIBILITY reference __make_ref(size_t __pos)
417 {return reference(&__first_, __storage_type(1) << __pos);}
418 _LIBCPP_INLINE_VISIBILITY const_reference __make_ref(size_t __pos) const
419 {return const_reference(&__first_, __storage_type(1) << __pos);}
420 _LIBCPP_INLINE_VISIBILITY iterator __make_iter(size_t __pos)
421 {return iterator(&__first_ + __pos / __bits_per_word, __pos % __bits_per_word);}
422 _LIBCPP_INLINE_VISIBILITY const_iterator __make_iter(size_t __pos) const
423 {return const_iterator(&__first_ + __pos / __bits_per_word, __pos % __bits_per_word);}
424
425 void operator&=(const __bitset& __v);
426 void operator|=(const __bitset& __v);
427 void operator^=(const __bitset& __v);
428
429 void flip();
430
431 unsigned long to_ulong() const;
432 unsigned long long to_ullong() const;
433
434 bool all() const;
435 bool any() const;
436
437 size_t __hash_code() const;
438};
439
440template <size_t _Size>
441inline _LIBCPP_INLINE_VISIBILITY
442__bitset<1, _Size>::__bitset()
443 : __first_(0)
444{
445}
446
447template <size_t _Size>
448inline _LIBCPP_INLINE_VISIBILITY
449__bitset<1, _Size>::__bitset(unsigned long long __v)
450 : __first_(static_cast<__storage_type>(__v))
451{
452}
453
454template <size_t _Size>
455inline _LIBCPP_INLINE_VISIBILITY
456void
457__bitset<1, _Size>::operator&=(const __bitset& __v)
458{
459 __first_ &= __v.__first_;
460}
461
462template <size_t _Size>
463inline _LIBCPP_INLINE_VISIBILITY
464void
465__bitset<1, _Size>::operator|=(const __bitset& __v)
466{
467 __first_ |= __v.__first_;
468}
469
470template <size_t _Size>
471inline _LIBCPP_INLINE_VISIBILITY
472void
473__bitset<1, _Size>::operator^=(const __bitset& __v)
474{
475 __first_ ^= __v.__first_;
476}
477
478template <size_t _Size>
479inline _LIBCPP_INLINE_VISIBILITY
480void
481__bitset<1, _Size>::flip()
482{
483 __storage_type __m = ~__storage_type(0) >> (__bits_per_word - _Size);
484 __first_ = ~__first_;
485 __first_ &= __m;
486}
487
488template <size_t _Size>
489inline _LIBCPP_INLINE_VISIBILITY
490unsigned long
491__bitset<1, _Size>::to_ulong() const
492{
493 return __first_;
494}
495
496template <size_t _Size>
497inline _LIBCPP_INLINE_VISIBILITY
498unsigned long long
499__bitset<1, _Size>::to_ullong() const
500{
501 return __first_;
502}
503
504template <size_t _Size>
505inline _LIBCPP_INLINE_VISIBILITY
506bool
507__bitset<1, _Size>::all() const
508{
509 __storage_type __m = ~__storage_type(0) >> (__bits_per_word - _Size);
510 return !(~__first_ & __m);
511}
512
513template <size_t _Size>
514inline _LIBCPP_INLINE_VISIBILITY
515bool
516__bitset<1, _Size>::any() const
517{
518 __storage_type __m = ~__storage_type(0) >> (__bits_per_word - _Size);
519 return __first_ & __m;
520}
521
522template <size_t _Size>
523inline _LIBCPP_INLINE_VISIBILITY
524size_t
525__bitset<1, _Size>::__hash_code() const
526{
527 return __first_;
528}
529
530template <>
531class __bitset<0, 0>
532{
533public:
534 typedef ptrdiff_t difference_type;
535 typedef size_t size_type;
536protected:
537 typedef __bitset __self;
538 typedef size_type __storage_type;
539 typedef __storage_type* __storage_pointer;
540 typedef const __storage_type* __const_storage_pointer;
541 static const unsigned __bits_per_word = static_cast<unsigned>(sizeof(__storage_type) * CHAR_BIT);
542
543 friend class __bit_reference<__bitset>;
544 friend class __bit_const_reference<__bitset>;
545 friend class __bit_iterator<__bitset, false>;
546 friend class __bit_iterator<__bitset, true>;
547 friend class __bit_array<__bitset>;
548
549 typedef __bit_reference<__bitset> reference;
550 typedef __bit_const_reference<__bitset> const_reference;
551 typedef __bit_iterator<__bitset, false> iterator;
552 typedef __bit_iterator<__bitset, true> const_iterator;
553
554 __bitset();
555 explicit __bitset(unsigned long long);
556
557 _LIBCPP_INLINE_VISIBILITY reference __make_ref(size_t)
558 {return reference(0, 1);}
559 _LIBCPP_INLINE_VISIBILITY const_reference __make_ref(size_t) const
560 {return const_reference(0, 1);}
561 _LIBCPP_INLINE_VISIBILITY iterator __make_iter(size_t __pos)
562 {return iterator(0, 0);}
563 _LIBCPP_INLINE_VISIBILITY const_iterator __make_iter(size_t __pos) const
564 {return const_iterator(0, 0);}
565
566 _LIBCPP_INLINE_VISIBILITY void operator&=(const __bitset&) {}
567 _LIBCPP_INLINE_VISIBILITY void operator|=(const __bitset&) {}
568 _LIBCPP_INLINE_VISIBILITY void operator^=(const __bitset&) {}
569
570 _LIBCPP_INLINE_VISIBILITY void flip() {}
571
572 _LIBCPP_INLINE_VISIBILITY unsigned long to_ulong() const {return 0;}
573 _LIBCPP_INLINE_VISIBILITY unsigned long long to_ullong() const {return 0;}
574
575 _LIBCPP_INLINE_VISIBILITY bool all() const {return true;}
576 _LIBCPP_INLINE_VISIBILITY bool any() const {return false;}
577
578 _LIBCPP_INLINE_VISIBILITY size_t __hash_code() const {return 0;}
579};
580
581inline _LIBCPP_INLINE_VISIBILITY
582__bitset<0, 0>::__bitset()
583{
584}
585
586inline _LIBCPP_INLINE_VISIBILITY
587__bitset<0, 0>::__bitset(unsigned long long)
588{
589}
590
591template <size_t _Size> class bitset;
592template <size_t _Size> struct hash<bitset<_Size> >;
593
594template <size_t _Size>
595class bitset
596 : private __bitset<_Size == 0 ? 0 : (_Size - 1) / (sizeof(size_t) * CHAR_BIT) + 1, _Size>
597{
598 static const unsigned __n_words = _Size == 0 ? 0 : (_Size - 1) / (sizeof(size_t) * CHAR_BIT) + 1;
599 typedef __bitset<__n_words, _Size> base;
600
601public:
602 typedef typename base::reference reference;
603 typedef typename base::const_reference const_reference;
604
605 // 23.3.5.1 constructors:
606 /*constexpr*/ _LIBCPP_INLINE_VISIBILITY bitset() {}
607 /*constexpr*/ _LIBCPP_INLINE_VISIBILITY bitset(unsigned long long __v) : base(__v) {}
608 explicit bitset(const char* __str);
609 template<class _CharT, class _Traits, class _Allocator>
610 explicit bitset(const basic_string<_CharT,_Traits,_Allocator>& __str,
611 typename basic_string<_CharT,_Traits,_Allocator>::size_type __pos = 0,
612 typename basic_string<_CharT,_Traits,_Allocator>::size_type __n =
613 (basic_string<_CharT,_Traits,_Allocator>::npos),
614 _CharT __zero = _CharT('0'), _CharT __one = _CharT('1'));
615
616 // 23.3.5.2 bitset operations:
617 bitset& operator&=(const bitset& __rhs);
618 bitset& operator|=(const bitset& __rhs);
619 bitset& operator^=(const bitset& __rhs);
620 bitset& operator<<=(size_t __pos);
621 bitset& operator>>=(size_t __pos);
622 bitset& set();
623 bitset& set(size_t __pos, bool __val = true);
624 bitset& reset();
625 bitset& reset(size_t __pos);
626 bitset operator~() const;
627 bitset& flip();
628 bitset& flip(size_t __pos);
629
630 // element access:
631 _LIBCPP_INLINE_VISIBILITY const_reference operator[](size_t __p) const {return base::__make_ref(__p);}
632 _LIBCPP_INLINE_VISIBILITY reference operator[](size_t __p) {return base::__make_ref(__p);}
633 unsigned long to_ulong() const;
634 unsigned long long to_ullong() const;
635 template <class _CharT, class _Traits, class _Allocator>
636 basic_string<_CharT, _Traits, _Allocator> to_string(_CharT __zero = _CharT('0'),
637 _CharT __one = _CharT('1')) const;
638 template <class _CharT, class _Traits>
639 basic_string<_CharT, _Traits, allocator<_CharT> > to_string(_CharT __zero = _CharT('0'),
640 _CharT __one = _CharT('1')) const;
641 template <class _CharT>
642 basic_string<_CharT, char_traits<_CharT>, allocator<_CharT> > to_string(_CharT __zero = _CharT('0'),
643 _CharT __one = _CharT('1')) const;
644 basic_string<char, char_traits<char>, allocator<char> > to_string(char __zero = '0',
645 char __one = '1') const;
646 size_t count() const;
647 /*constexpr*/ _LIBCPP_INLINE_VISIBILITY size_t size() const {return _Size;}
648 bool operator==(const bitset& __rhs) const;
649 bool operator!=(const bitset& __rhs) const;
650 bool test(size_t __pos) const;
651 bool all() const;
652 bool any() const;
653 _LIBCPP_INLINE_VISIBILITY bool none() const {return !any();}
654 bitset operator<<(size_t __pos) const;
655 bitset operator>>(size_t __pos) const;
656
657private:
658
659 size_t __hash_code() const {return base::__hash_code();}
660
661 friend struct hash<bitset>;
662};
663
664template <size_t _Size>
665bitset<_Size>::bitset(const char* __str)
666{
667 size_t __rlen = strlen(__str);
668 for (size_t __i = 0; __i < __rlen; ++__i)
669 if (__str[__i] != '0' && __str[__i] != '1')
670#ifndef _LIBCPP_NO_EXCEPTIONS
671 throw invalid_argument("bitset string ctor has invalid argument");
672#else
673 assert(!"bitset string ctor has invalid argument");
674#endif
675 size_t _M = _STD::min(__rlen, _Size);
676 size_t __i = 0;
677 for (; __i < _M; ++__i)
678 {
679 switch (__str[_M - 1 - __i])
680 {
681 case '0':
682 (*this)[__i] = false;
683 break;
684 case '1':
685 (*this)[__i] = true;
686 break;
687 }
688 }
689 _STD::fill(base::__make_iter(__i), base::__make_iter(_Size), false);
690}
691
692template <size_t _Size>
693template<class _CharT, class _Traits, class _Allocator>
694bitset<_Size>::bitset(const basic_string<_CharT,_Traits,_Allocator>& __str,
695 typename basic_string<_CharT,_Traits,_Allocator>::size_type __pos,
696 typename basic_string<_CharT,_Traits,_Allocator>::size_type __n,
697 _CharT __zero, _CharT __one)
698{
699 if (__pos > __str.size())
700#ifndef _LIBCPP_NO_EXCEPTIONS
701 throw out_of_range("bitset string pos out of range");
702#else
703 assert(!"bitset string pos out of range");
704#endif
705 size_t __rlen = _STD::min(__n, __str.size() - __pos);
706 for (size_t __i = __pos; __i < __pos + __rlen; ++__i)
707 if (!_Traits::eq(__str[__i], __zero) && !_Traits::eq(__str[__i], __one))
708#ifndef _LIBCPP_NO_EXCEPTIONS
709 throw invalid_argument("bitset string ctor has invalid argument");
710#else
711 assert(!"bitset string ctor has invalid argument");
712#endif
713 size_t _M = _STD::min(__rlen, _Size);
714 size_t __i = 0;
715 for (; __i < _M; ++__i)
716 {
717 _CharT __c = __str[__pos + _M - 1 - __i];
718 if (_Traits::eq(__c, __zero))
719 (*this)[__i] = false;
720 else
721 (*this)[__i] = true;
722 }
723 _STD::fill(base::__make_iter(__i), base::__make_iter(_Size), false);
724}
725
726template <size_t _Size>
727inline _LIBCPP_INLINE_VISIBILITY
728bitset<_Size>&
729bitset<_Size>::operator&=(const bitset& __rhs)
730{
731 base::operator&=(__rhs);
732 return *this;
733}
734
735template <size_t _Size>
736inline _LIBCPP_INLINE_VISIBILITY
737bitset<_Size>&
738bitset<_Size>::operator|=(const bitset& __rhs)
739{
740 base::operator|=(__rhs);
741 return *this;
742}
743
744template <size_t _Size>
745inline _LIBCPP_INLINE_VISIBILITY
746bitset<_Size>&
747bitset<_Size>::operator^=(const bitset& __rhs)
748{
749 base::operator^=(__rhs);
750 return *this;
751}
752
753template <size_t _Size>
754bitset<_Size>&
755bitset<_Size>::operator<<=(size_t __pos)
756{
757 __pos = _STD::min(__pos, _Size);
758 _STD::copy_backward(base::__make_iter(0), base::__make_iter(_Size - __pos), base::__make_iter(_Size));
759 _STD::fill_n(base::__make_iter(0), __pos, false);
760 return *this;
761}
762
763template <size_t _Size>
764bitset<_Size>&
765bitset<_Size>::operator>>=(size_t __pos)
766{
767 __pos = _STD::min(__pos, _Size);
768 _STD::copy(base::__make_iter(__pos), base::__make_iter(_Size), base::__make_iter(0));
769 _STD::fill_n(base::__make_iter(_Size - __pos), __pos, false);
770 return *this;
771}
772
773template <size_t _Size>
774inline _LIBCPP_INLINE_VISIBILITY
775bitset<_Size>&
776bitset<_Size>::set()
777{
778 _STD::fill_n(base::__make_iter(0), _Size, true);
779 return *this;
780}
781
782template <size_t _Size>
783bitset<_Size>&
784bitset<_Size>::set(size_t __pos, bool __val)
785{
786 if (__pos >= _Size)
787#ifndef _LIBCPP_NO_EXCEPTIONS
788 throw out_of_range("bitset set argument out of range");
789#else
790 assert(!"bitset set argument out of range");
791#endif
792 (*this)[__pos] = __val;
793 return *this;
794}
795
796template <size_t _Size>
797inline _LIBCPP_INLINE_VISIBILITY
798bitset<_Size>&
799bitset<_Size>::reset()
800{
801 _STD::fill_n(base::__make_iter(0), _Size, false);
802 return *this;
803}
804
805template <size_t _Size>
806bitset<_Size>&
807bitset<_Size>::reset(size_t __pos)
808{
809 if (__pos >= _Size)
810#ifndef _LIBCPP_NO_EXCEPTIONS
811 throw out_of_range("bitset reset argument out of range");
812#else
813 assert(!"bitset reset argument out of range");
814#endif
815 (*this)[__pos] = false;
816 return *this;
817}
818
819template <size_t _Size>
820inline _LIBCPP_INLINE_VISIBILITY
821bitset<_Size>
822bitset<_Size>::operator~() const
823{
824 bitset __x(*this);
825 __x.flip();
826 return __x;
827}
828
829template <size_t _Size>
830inline _LIBCPP_INLINE_VISIBILITY
831bitset<_Size>&
832bitset<_Size>::flip()
833{
834 base::flip();
835 return *this;
836}
837
838template <size_t _Size>
839bitset<_Size>&
840bitset<_Size>::flip(size_t __pos)
841{
842 if (__pos >= _Size)
843#ifndef _LIBCPP_NO_EXCEPTIONS
844 throw out_of_range("bitset flip argument out of range");
845#else
846 assert(!"bitset flip argument out of range");
847#endif
848 reference r = base::__make_ref(__pos);
849 r = ~r;
850 return *this;
851}
852
853template <size_t _Size>
854inline _LIBCPP_INLINE_VISIBILITY
855unsigned long
856bitset<_Size>::to_ulong() const
857{
858 return base::to_ulong();
859}
860
861template <size_t _Size>
862inline _LIBCPP_INLINE_VISIBILITY
863unsigned long long
864bitset<_Size>::to_ullong() const
865{
866 return base::to_ullong();
867}
868
869template <size_t _Size>
870template <class _CharT, class _Traits, class _Allocator>
871basic_string<_CharT, _Traits, _Allocator>
872bitset<_Size>::to_string(_CharT __zero, _CharT __one) const
873{
874 basic_string<_CharT, _Traits, _Allocator> __r(_Size, __zero);
875 for (size_t __i = 0; __i < _Size; ++__i)
876 {
877 if ((*this)[__i])
878 __r[_Size - 1 - __i] = __one;
879 }
880 return __r;
881}
882
883template <size_t _Size>
884template <class _CharT, class _Traits>
885inline _LIBCPP_INLINE_VISIBILITY
886basic_string<_CharT, _Traits, allocator<_CharT> >
887bitset<_Size>::to_string(_CharT __zero, _CharT __one) const
888{
889 return to_string<_CharT, _Traits, allocator<_CharT> >(__zero, __one);
890}
891
892template <size_t _Size>
893template <class _CharT>
894inline _LIBCPP_INLINE_VISIBILITY
895basic_string<_CharT, char_traits<_CharT>, allocator<_CharT> >
896bitset<_Size>::to_string(_CharT __zero, _CharT __one) const
897{
898 return to_string<_CharT, char_traits<_CharT>, allocator<_CharT> >(__zero, __one);
899}
900
901template <size_t _Size>
902inline _LIBCPP_INLINE_VISIBILITY
903basic_string<char, char_traits<char>, allocator<char> >
904bitset<_Size>::to_string(char __zero, char __one) const
905{
906 return to_string<char, char_traits<char>, allocator<char> >(__zero, __one);
907}
908
909template <size_t _Size>
910inline _LIBCPP_INLINE_VISIBILITY
911size_t
912bitset<_Size>::count() const
913{
914 return static_cast<size_t>(_STD::count(base::__make_iter(0), base::__make_iter(_Size), true));
915}
916
917template <size_t _Size>
918inline _LIBCPP_INLINE_VISIBILITY
919bool
920bitset<_Size>::operator==(const bitset& __rhs) const
921{
922 return _STD::equal(base::__make_iter(0), base::__make_iter(_Size), __rhs.__make_iter(0));
923}
924
925template <size_t _Size>
926inline _LIBCPP_INLINE_VISIBILITY
927bool
928bitset<_Size>::operator!=(const bitset& __rhs) const
929{
930 return !(*this == __rhs);
931}
932
933template <size_t _Size>
934bool
935bitset<_Size>::test(size_t __pos) const
936{
937 if (__pos >= _Size)
938#ifndef _LIBCPP_NO_EXCEPTIONS
939 throw out_of_range("bitset test argument out of range");
940#else
941 assert(!"bitset test argument out of range");
942#endif
943 return (*this)[__pos];
944}
945
946template <size_t _Size>
947inline _LIBCPP_INLINE_VISIBILITY
948bool
949bitset<_Size>::all() const
950{
951 return base::all();
952}
953
954template <size_t _Size>
955inline _LIBCPP_INLINE_VISIBILITY
956bool
957bitset<_Size>::any() const
958{
959 return base::any();
960}
961
962template <size_t _Size>
963inline _LIBCPP_INLINE_VISIBILITY
964bitset<_Size>
965bitset<_Size>::operator<<(size_t __pos) const
966{
967 bitset __r = *this;
968 __r <<= __pos;
969 return __r;
970}
971
972template <size_t _Size>
973inline _LIBCPP_INLINE_VISIBILITY
974bitset<_Size>
975bitset<_Size>::operator>>(size_t __pos) const
976{
977 bitset __r = *this;
978 __r >>= __pos;
979 return __r;
980}
981
982template <size_t _Size>
983inline _LIBCPP_INLINE_VISIBILITY
984bitset<_Size>
985operator&(const bitset<_Size>& __x, const bitset<_Size>& __y)
986{
987 bitset<_Size> __r = __x;
988 __r &= __y;
989 return __r;
990}
991
992template <size_t _Size>
993inline _LIBCPP_INLINE_VISIBILITY
994bitset<_Size>
995operator|(const bitset<_Size>& __x, const bitset<_Size>& __y)
996{
997 bitset<_Size> __r = __x;
998 __r |= __y;
999 return __r;
1000}
1001
1002template <size_t _Size>
1003inline _LIBCPP_INLINE_VISIBILITY
1004bitset<_Size>
1005operator^(const bitset<_Size>& __x, const bitset<_Size>& __y)
1006{
1007 bitset<_Size> __r = __x;
1008 __r ^= __y;
1009 return __r;
1010}
1011
1012template <size_t _Size>
1013struct hash<bitset<_Size> >
1014 : public unary_function<bitset<_Size>, size_t>
1015{
1016 size_t operator()(const bitset<_Size>& __bs) const
1017 {return __bs.__hash_code();}
1018};
1019
1020_LIBCPP_END_NAMESPACE_STD
1021
1022#endif // _LIBCPP_BITSET