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