[NFC][RemoveDIs] Prefer iterators over inst-pointers in InstCombine
[llvm-project.git] / libcxx / include / bitset
blobe4c01e617110b75eade6b2bab5b42a1415a78ff5
1 // -*- C++ -*-
2 //===----------------------------------------------------------------------===//
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 //===----------------------------------------------------------------------===//
10 #ifndef _LIBCPP_BITSET
11 #define _LIBCPP_BITSET
14     bitset synopsis
16 namespace std
19 namespace std {
21 template <size_t N>
22 class bitset
24 public:
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     };
39     // 23.3.5.1 constructors:
40     constexpr bitset() noexcept;
41     constexpr bitset(unsigned long long val) noexcept;
42     template <class charT>
43         constexpr 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'));                                // until C++26, constexpr since C++23
46     template <class charT>
47         constexpr explicit bitset(const charT* str,
48             typename basic_string_view<charT>::size_type n = basic_string_view<charT>::npos,
49             charT zero = charT('0'), charT one = charT('1'));                                // since C++26
50     template<class charT, class traits>
51         explicit bitset(
52             const basic_string_view<charT,traits>& str,
53             typename basic_string_view<charT,traits>::size_type pos = 0,
54             typename basic_string_view<charT,traits>::size_type n = basic_string_view<charT,traits>::npos,
55             charT zero = charT('0'), charT one = charT('1'));                                // since C++26
56     template<class charT, class traits, class Allocator>
57         constexpr explicit bitset(
58             const basic_string<charT,traits,Allocator>& str,
59             typename basic_string<charT,traits,Allocator>::size_type pos = 0,
60             typename basic_string<charT,traits,Allocator>::size_type n = basic_string<charT,traits,Allocator>::npos,
61             charT zero = charT('0'), charT one = charT('1'));                                // constexpr since C++23
63     // 23.3.5.2 bitset operations:
64     bitset& operator&=(const bitset& rhs) noexcept; // constexpr since C++23
65     bitset& operator|=(const bitset& rhs) noexcept; // constexpr since C++23
66     bitset& operator^=(const bitset& rhs) noexcept; // constexpr since C++23
67     bitset& operator<<=(size_t pos) noexcept;       // constexpr since C++23
68     bitset& operator>>=(size_t pos) noexcept;       // constexpr since C++23
69     bitset& set() noexcept;                         // constexpr since C++23
70     bitset& set(size_t pos, bool val = true);       // constexpr since C++23
71     bitset& reset() noexcept;                       // constexpr since C++23
72     bitset& reset(size_t pos);                      // constexpr since C++23
73     bitset operator~() const noexcept;              // constexpr since C++23
74     bitset& flip() noexcept;                        // constexpr since C++23
75     bitset& flip(size_t pos);                       // constexpr since C++23
77     // element access:
78     constexpr bool operator[](size_t pos) const;
79     reference operator[](size_t pos);            // constexpr since C++23
80     unsigned long to_ulong() const;              // constexpr since C++23
81     unsigned long long to_ullong() const;        // constexpr since C++23
82     template <class charT, class traits, class Allocator> // constexpr since C++23
83         basic_string<charT, traits, Allocator> to_string(charT zero = charT('0'), charT one = charT('1')) const;
84     template <class charT, class traits> // constexpr since C++23
85         basic_string<charT, traits, allocator<charT> > to_string(charT zero = charT('0'), charT one = charT('1')) const;
86     template <class charT> // constexpr since C++23
87         basic_string<charT, char_traits<charT>, allocator<charT> > to_string(charT zero = charT('0'), charT one = charT('1')) const;
88     basic_string<char, char_traits<char>, allocator<char> > to_string(char zero = '0', char one = '1') const; // constexpr since C++23
89     size_t count() const noexcept;                     // constexpr since C++23
90     constexpr size_t size() const noexcept;            // constexpr since C++23
91     bool operator==(const bitset& rhs) const noexcept; // constexpr since C++23
92     bool operator!=(const bitset& rhs) const noexcept; // removed in C++20
93     bool test(size_t pos) const;                       // constexpr since C++23
94     bool all() const noexcept;                         // constexpr since C++23
95     bool any() const noexcept;                         // constexpr since C++23
96     bool none() const noexcept;                        // constexpr since C++23
97     bitset<N> operator<<(size_t pos) const noexcept;   // constexpr since C++23
98     bitset<N> operator>>(size_t pos) const noexcept;   // constexpr since C++23
101 // 23.3.5.3 bitset operators:
102 template <size_t N>
103 bitset<N> operator&(const bitset<N>&, const bitset<N>&) noexcept; // constexpr since C++23
105 template <size_t N>
106 bitset<N> operator|(const bitset<N>&, const bitset<N>&) noexcept; // constexpr since C++23
108 template <size_t N>
109 bitset<N> operator^(const bitset<N>&, const bitset<N>&) noexcept; // constexpr since C++23
111 template <class charT, class traits, size_t N>
112 basic_istream<charT, traits>&
113 operator>>(basic_istream<charT, traits>& is, bitset<N>& x);
115 template <class charT, class traits, size_t N>
116 basic_ostream<charT, traits>&
117 operator<<(basic_ostream<charT, traits>& os, const bitset<N>& x);
119 template <size_t N> struct hash<std::bitset<N>>;
121 }  // std
125 #include <__algorithm/fill.h>
126 #include <__algorithm/find.h>
127 #include <__assert> // all public C++ headers provide the assertion handler
128 #include <__bit_reference>
129 #include <__config>
130 #include <__functional/hash.h>
131 #include <__functional/unary_function.h>
132 #include <__type_traits/is_char_like_type.h>
133 #include <climits>
134 #include <cstddef>
135 #include <stdexcept>
136 #include <string_view>
137 #include <version>
139 // standard-mandated includes
141 // [bitset.syn]
142 #include <iosfwd>
143 #include <string>
145 #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
146 #  pragma GCC system_header
147 #endif
149 _LIBCPP_PUSH_MACROS
150 #include <__undef_macros>
153 _LIBCPP_BEGIN_NAMESPACE_STD
155 template <size_t _N_words, size_t _Size>
156 class __bitset;
158 template <size_t _N_words, size_t _Size>
159 struct __has_storage_type<__bitset<_N_words, _Size> >
161     static const bool value = true;
164 template <size_t _N_words, size_t _Size>
165 class __bitset
167 public:
168     typedef ptrdiff_t              difference_type;
169     typedef size_t                 size_type;
170     typedef size_type              __storage_type;
171 protected:
172     typedef __bitset __self;
173     typedef       __storage_type*  __storage_pointer;
174     typedef const __storage_type*  __const_storage_pointer;
175     static const unsigned __bits_per_word = static_cast<unsigned>(sizeof(__storage_type) * CHAR_BIT);
177     friend class __bit_reference<__bitset>;
178     friend class __bit_const_reference<__bitset>;
179     friend class __bit_iterator<__bitset, false>;
180     friend class __bit_iterator<__bitset, true>;
181     friend struct __bit_array<__bitset>;
183     __storage_type __first_[_N_words];
185     typedef __bit_reference<__bitset>                  reference;
186     typedef __bit_const_reference<__bitset>            const_reference;
187     typedef __bit_iterator<__bitset, false>            iterator;
188     typedef __bit_iterator<__bitset, true>             const_iterator;
190     _LIBCPP_INLINE_VISIBILITY
191     _LIBCPP_CONSTEXPR __bitset() _NOEXCEPT;
192     _LIBCPP_INLINE_VISIBILITY
193     explicit _LIBCPP_CONSTEXPR __bitset(unsigned long long __v) _NOEXCEPT;
195     _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_SINCE_CXX23 reference __make_ref(size_t __pos) _NOEXCEPT
196         {return reference(__first_ + __pos / __bits_per_word, __storage_type(1) << __pos % __bits_per_word);}
197     _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR const_reference __make_ref(size_t __pos) const _NOEXCEPT
198         {return const_reference(__first_ + __pos / __bits_per_word, __storage_type(1) << __pos % __bits_per_word);}
199     _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_SINCE_CXX23 iterator __make_iter(size_t __pos) _NOEXCEPT
200         {return iterator(__first_ + __pos / __bits_per_word, __pos % __bits_per_word);}
201     _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_SINCE_CXX23 const_iterator __make_iter(size_t __pos) const _NOEXCEPT
202         {return const_iterator(__first_ + __pos / __bits_per_word, __pos % __bits_per_word);}
204     _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_SINCE_CXX23
205     void operator&=(const __bitset& __v) _NOEXCEPT;
206     _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_SINCE_CXX23
207     void operator|=(const __bitset& __v) _NOEXCEPT;
208     _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_SINCE_CXX23
209     void operator^=(const __bitset& __v) _NOEXCEPT;
211     _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX23 void flip() _NOEXCEPT;
212     _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_SINCE_CXX23 unsigned long to_ulong() const
213         {return to_ulong(integral_constant<bool, _Size < sizeof(unsigned long) * CHAR_BIT>());}
214     _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_SINCE_CXX23 unsigned long long to_ullong() const
215         {return to_ullong(integral_constant<bool, _Size < sizeof(unsigned long long) * CHAR_BIT>());}
217     _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX23 bool all() const _NOEXCEPT;
218     _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX23 bool any() const _NOEXCEPT;
219     _LIBCPP_INLINE_VISIBILITY
220     size_t __hash_code() const _NOEXCEPT;
221 private:
222 #ifdef _LIBCPP_CXX03_LANG
223     void __init(unsigned long long __v, false_type) _NOEXCEPT;
224     _LIBCPP_INLINE_VISIBILITY
225     void __init(unsigned long long __v, true_type) _NOEXCEPT;
226 #endif // _LIBCPP_CXX03_LANG
227     _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX23
228     unsigned long to_ulong(false_type) const;
229     _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_SINCE_CXX23
230     unsigned long to_ulong(true_type) const;
231     _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX23
232     unsigned long long to_ullong(false_type) const;
233     _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_SINCE_CXX23
234     unsigned long long to_ullong(true_type) const;
235     _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_SINCE_CXX23
236     unsigned long long to_ullong(true_type, false_type) const;
237     _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX23
238     unsigned long long to_ullong(true_type, true_type) const;
241 template <size_t _N_words, size_t _Size>
242 inline
243 _LIBCPP_CONSTEXPR
244 __bitset<_N_words, _Size>::__bitset() _NOEXCEPT
245 #ifndef _LIBCPP_CXX03_LANG
246     : __first_{0}
247 #endif
249 #ifdef _LIBCPP_CXX03_LANG
250     _VSTD::fill_n(__first_, _N_words, __storage_type(0));
251 #endif
254 #ifdef _LIBCPP_CXX03_LANG
256 template <size_t _N_words, size_t _Size>
257 void
258 __bitset<_N_words, _Size>::__init(unsigned long long __v, false_type) _NOEXCEPT
260     __storage_type __t[sizeof(unsigned long long) / sizeof(__storage_type)];
261     size_t __sz = _Size;
262     for (size_t __i = 0; __i < sizeof(__t)/sizeof(__t[0]); ++__i, __v >>= __bits_per_word, __sz -= __bits_per_word )
263         if ( __sz < __bits_per_word)
264             __t[__i] = static_cast<__storage_type>(__v) & ( 1ULL << __sz ) - 1;
265         else
266             __t[__i] = static_cast<__storage_type>(__v);
268     _VSTD::copy(__t, __t + sizeof(__t)/sizeof(__t[0]), __first_);
269     _VSTD::fill(__first_ + sizeof(__t)/sizeof(__t[0]), __first_ + sizeof(__first_)/sizeof(__first_[0]),
270                __storage_type(0));
273 template <size_t _N_words, size_t _Size>
274 inline _LIBCPP_INLINE_VISIBILITY
275 void
276 __bitset<_N_words, _Size>::__init(unsigned long long __v, true_type) _NOEXCEPT
278     __first_[0] = __v;
279     if (_Size < __bits_per_word)
280         __first_[0] &= ( 1ULL << _Size ) - 1;
282     _VSTD::fill(__first_ + 1, __first_ + sizeof(__first_)/sizeof(__first_[0]), __storage_type(0));
285 #endif // _LIBCPP_CXX03_LANG
287 template <size_t _N_words, size_t _Size>
288 inline
289 _LIBCPP_CONSTEXPR
290 __bitset<_N_words, _Size>::__bitset(unsigned long long __v) _NOEXCEPT
291 #ifndef _LIBCPP_CXX03_LANG
292 #if __SIZEOF_SIZE_T__ == 8
293     : __first_{__v}
294 #elif __SIZEOF_SIZE_T__ == 4
295     : __first_{static_cast<__storage_type>(__v),
296                 _Size >= 2 * __bits_per_word ? static_cast<__storage_type>(__v >> __bits_per_word)
297                 : static_cast<__storage_type>((__v >> __bits_per_word) & (__storage_type(1) << (_Size - __bits_per_word)) - 1)}
298 #else
299 #error This constructor has not been ported to this platform
300 #endif
301 #endif
303 #ifdef _LIBCPP_CXX03_LANG
304     __init(__v, integral_constant<bool, sizeof(unsigned long long) == sizeof(__storage_type)>());
305 #endif
308 template <size_t _N_words, size_t _Size>
309 inline
310 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX23 void
311 __bitset<_N_words, _Size>::operator&=(const __bitset& __v) _NOEXCEPT
313     for (size_type __i = 0; __i < _N_words; ++__i)
314         __first_[__i] &= __v.__first_[__i];
317 template <size_t _N_words, size_t _Size>
318 inline
319 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX23 void
320 __bitset<_N_words, _Size>::operator|=(const __bitset& __v) _NOEXCEPT
322     for (size_type __i = 0; __i < _N_words; ++__i)
323         __first_[__i] |= __v.__first_[__i];
326 template <size_t _N_words, size_t _Size>
327 inline
328 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX23 void
329 __bitset<_N_words, _Size>::operator^=(const __bitset& __v) _NOEXCEPT
331     for (size_type __i = 0; __i < _N_words; ++__i)
332         __first_[__i] ^= __v.__first_[__i];
335 template <size_t _N_words, size_t _Size>
336 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX23 void
337 __bitset<_N_words, _Size>::flip() _NOEXCEPT
339     // do middle whole words
340     size_type __n = _Size;
341     __storage_pointer __p = __first_;
342     for (; __n >= __bits_per_word; ++__p, __n -= __bits_per_word)
343         *__p = ~*__p;
344     // do last partial word
345     if (__n > 0)
346     {
347         __storage_type __m = ~__storage_type(0) >> (__bits_per_word - __n);
348         __storage_type __b = *__p & __m;
349         *__p &= ~__m;
350         *__p |= ~__b & __m;
351     }
354 template <size_t _N_words, size_t _Size>
355 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX23 unsigned long
356 __bitset<_N_words, _Size>::to_ulong(false_type) const
358     const_iterator __e = __make_iter(_Size);
359     const_iterator __i = _VSTD::find(__make_iter(sizeof(unsigned long) * CHAR_BIT), __e, true);
360     if (__i != __e)
361         __throw_overflow_error("bitset to_ulong overflow error");
363     return __first_[0];
366 template <size_t _N_words, size_t _Size>
367 inline
368 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX23 unsigned long
369 __bitset<_N_words, _Size>::to_ulong(true_type) const
371     return __first_[0];
374 template <size_t _N_words, size_t _Size>
375 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX23 unsigned long long
376 __bitset<_N_words, _Size>::to_ullong(false_type) const
378     const_iterator __e = __make_iter(_Size);
379     const_iterator __i = _VSTD::find(__make_iter(sizeof(unsigned long long) * CHAR_BIT), __e, true);
380     if (__i != __e)
381         __throw_overflow_error("bitset to_ullong overflow error");
383     return to_ullong(true_type());
386 template <size_t _N_words, size_t _Size>
387 inline
388 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX23 unsigned long long
389 __bitset<_N_words, _Size>::to_ullong(true_type) const
391     return to_ullong(true_type(), integral_constant<bool, sizeof(__storage_type) < sizeof(unsigned long long)>());
394 template <size_t _N_words, size_t _Size>
395 inline
396 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX23 unsigned long long
397 __bitset<_N_words, _Size>::to_ullong(true_type, false_type) const
399     return __first_[0];
402 template <size_t _N_words, size_t _Size>
403 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX23 unsigned long long
404 __bitset<_N_words, _Size>::to_ullong(true_type, true_type) const
406     unsigned long long __r = __first_[0];
407     for (size_t __i = 1; __i < sizeof(unsigned long long) / sizeof(__storage_type); ++__i)
408         __r |= static_cast<unsigned long long>(__first_[__i]) << (sizeof(__storage_type) * CHAR_BIT);
409     return __r;
412 template <size_t _N_words, size_t _Size>
413 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX23 bool
414 __bitset<_N_words, _Size>::all() const _NOEXCEPT
416     // do middle whole words
417     size_type __n = _Size;
418     __const_storage_pointer __p = __first_;
419     for (; __n >= __bits_per_word; ++__p, __n -= __bits_per_word)
420         if (~*__p)
421             return false;
422     // do last partial word
423     if (__n > 0)
424     {
425         __storage_type __m = ~__storage_type(0) >> (__bits_per_word - __n);
426         if (~*__p & __m)
427             return false;
428     }
429     return true;
432 template <size_t _N_words, size_t _Size>
433 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX23 bool
434 __bitset<_N_words, _Size>::any() const _NOEXCEPT
436     // do middle whole words
437     size_type __n = _Size;
438     __const_storage_pointer __p = __first_;
439     for (; __n >= __bits_per_word; ++__p, __n -= __bits_per_word)
440         if (*__p)
441             return true;
442     // do last partial word
443     if (__n > 0)
444     {
445         __storage_type __m = ~__storage_type(0) >> (__bits_per_word - __n);
446         if (*__p & __m)
447             return true;
448     }
449     return false;
452 template <size_t _N_words, size_t _Size>
453 inline
454 size_t
455 __bitset<_N_words, _Size>::__hash_code() const _NOEXCEPT
457     size_t __h = 0;
458     for (size_type __i = 0; __i < _N_words; ++__i)
459         __h ^= __first_[__i];
460     return __h;
463 template <size_t _Size>
464 class __bitset<1, _Size>
466 public:
467     typedef ptrdiff_t              difference_type;
468     typedef size_t                 size_type;
469     typedef size_type              __storage_type;
470 protected:
471     typedef __bitset __self;
472     typedef       __storage_type*  __storage_pointer;
473     typedef const __storage_type*  __const_storage_pointer;
474     static const unsigned __bits_per_word = static_cast<unsigned>(sizeof(__storage_type) * CHAR_BIT);
476     friend class __bit_reference<__bitset>;
477     friend class __bit_const_reference<__bitset>;
478     friend class __bit_iterator<__bitset, false>;
479     friend class __bit_iterator<__bitset, true>;
480     friend struct __bit_array<__bitset>;
482     __storage_type __first_;
484     typedef __bit_reference<__bitset>                  reference;
485     typedef __bit_const_reference<__bitset>            const_reference;
486     typedef __bit_iterator<__bitset, false>            iterator;
487     typedef __bit_iterator<__bitset, true>             const_iterator;
489     _LIBCPP_INLINE_VISIBILITY
490     _LIBCPP_CONSTEXPR __bitset() _NOEXCEPT;
491     _LIBCPP_INLINE_VISIBILITY
492     explicit _LIBCPP_CONSTEXPR __bitset(unsigned long long __v) _NOEXCEPT;
494     _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_SINCE_CXX23 reference __make_ref(size_t __pos) _NOEXCEPT
495         {return reference(&__first_, __storage_type(1) << __pos);}
496     _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR const_reference __make_ref(size_t __pos) const _NOEXCEPT
497         {return const_reference(&__first_, __storage_type(1) << __pos);}
498     _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_SINCE_CXX23 iterator __make_iter(size_t __pos) _NOEXCEPT
499         {return iterator(&__first_ + __pos / __bits_per_word, __pos % __bits_per_word);}
500     _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_SINCE_CXX23 const_iterator __make_iter(size_t __pos) const _NOEXCEPT
501         {return const_iterator(&__first_ + __pos / __bits_per_word, __pos % __bits_per_word);}
503     _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_SINCE_CXX23
504     void operator&=(const __bitset& __v) _NOEXCEPT;
505     _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_SINCE_CXX23
506     void operator|=(const __bitset& __v) _NOEXCEPT;
507     _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_SINCE_CXX23
508     void operator^=(const __bitset& __v) _NOEXCEPT;
510     _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_SINCE_CXX23
511     void flip() _NOEXCEPT;
513     _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_SINCE_CXX23
514     unsigned long to_ulong() const;
515     _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_SINCE_CXX23
516     unsigned long long to_ullong() const;
518     _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_SINCE_CXX23
519     bool all() const _NOEXCEPT;
520     _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_SINCE_CXX23
521     bool any() const _NOEXCEPT;
523     _LIBCPP_INLINE_VISIBILITY
524     size_t __hash_code() const _NOEXCEPT;
527 template <size_t _Size>
528 inline
529 _LIBCPP_CONSTEXPR
530 __bitset<1, _Size>::__bitset() _NOEXCEPT
531     : __first_(0)
535 template <size_t _Size>
536 inline
537 _LIBCPP_CONSTEXPR
538 __bitset<1, _Size>::__bitset(unsigned long long __v) _NOEXCEPT
539     : __first_(
540         _Size == __bits_per_word ? static_cast<__storage_type>(__v)
541                                  : static_cast<__storage_type>(__v) & ((__storage_type(1) << _Size) - 1)
542     )
546 template <size_t _Size>
547 inline
548 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX23 void
549 __bitset<1, _Size>::operator&=(const __bitset& __v) _NOEXCEPT
551     __first_ &= __v.__first_;
554 template <size_t _Size>
555 inline
556 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX23 void
557 __bitset<1, _Size>::operator|=(const __bitset& __v) _NOEXCEPT
559     __first_ |= __v.__first_;
562 template <size_t _Size>
563 inline
564 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX23 void
565 __bitset<1, _Size>::operator^=(const __bitset& __v) _NOEXCEPT
567     __first_ ^= __v.__first_;
570 template <size_t _Size>
571 inline
572 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX23 void
573 __bitset<1, _Size>::flip() _NOEXCEPT
575     __storage_type __m = ~__storage_type(0) >> (__bits_per_word - _Size);
576     __first_ = ~__first_;
577     __first_ &= __m;
580 template <size_t _Size>
581 inline
582 _LIBCPP_CONSTEXPR_SINCE_CXX23 unsigned long
583 __bitset<1, _Size>::to_ulong() const
585     return __first_;
588 template <size_t _Size>
589 inline
590 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX23 unsigned long long
591 __bitset<1, _Size>::to_ullong() const
593     return __first_;
596 template <size_t _Size>
597 inline
598 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX23 bool
599 __bitset<1, _Size>::all() const _NOEXCEPT
601     __storage_type __m = ~__storage_type(0) >> (__bits_per_word - _Size);
602     return !(~__first_ & __m);
605 template <size_t _Size>
606 inline
607 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX23 bool
608 __bitset<1, _Size>::any() const _NOEXCEPT
610     __storage_type __m = ~__storage_type(0) >> (__bits_per_word - _Size);
611     return __first_ & __m;
614 template <size_t _Size>
615 inline
616 size_t
617 __bitset<1, _Size>::__hash_code() const _NOEXCEPT
619     return __first_;
622 template <>
623 class __bitset<0, 0>
625 public:
626     typedef ptrdiff_t              difference_type;
627     typedef size_t                 size_type;
628     typedef size_type              __storage_type;
629 protected:
630     typedef __bitset __self;
631     typedef       __storage_type*  __storage_pointer;
632     typedef const __storage_type*  __const_storage_pointer;
633     static const unsigned __bits_per_word = static_cast<unsigned>(sizeof(__storage_type) * CHAR_BIT);
635     friend class __bit_reference<__bitset>;
636     friend class __bit_const_reference<__bitset>;
637     friend class __bit_iterator<__bitset, false>;
638     friend class __bit_iterator<__bitset, true>;
639     friend struct __bit_array<__bitset>;
641     typedef __bit_reference<__bitset>                  reference;
642     typedef __bit_const_reference<__bitset>            const_reference;
643     typedef __bit_iterator<__bitset, false>            iterator;
644     typedef __bit_iterator<__bitset, true>             const_iterator;
646     _LIBCPP_INLINE_VISIBILITY
647     _LIBCPP_CONSTEXPR __bitset() _NOEXCEPT;
648     _LIBCPP_INLINE_VISIBILITY
649     explicit _LIBCPP_CONSTEXPR __bitset(unsigned long long) _NOEXCEPT;
651     _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_SINCE_CXX23 reference __make_ref(size_t) _NOEXCEPT
652         {return reference(nullptr, 1);}
653     _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR const_reference __make_ref(size_t) const _NOEXCEPT
654         {return const_reference(nullptr, 1);}
655     _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_SINCE_CXX23 iterator __make_iter(size_t) _NOEXCEPT
656         {return iterator(nullptr, 0);}
657     _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_SINCE_CXX23 const_iterator __make_iter(size_t) const _NOEXCEPT
658         {return const_iterator(nullptr, 0);}
660     _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_SINCE_CXX23 void operator&=(const __bitset&) _NOEXCEPT {}
661     _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_SINCE_CXX23 void operator|=(const __bitset&) _NOEXCEPT {}
662     _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_SINCE_CXX23 void operator^=(const __bitset&) _NOEXCEPT {}
664     _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_SINCE_CXX23 void flip() _NOEXCEPT {}
666     _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_SINCE_CXX23 unsigned long to_ulong() const {return 0;}
667     _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_SINCE_CXX23 unsigned long long to_ullong() const {return 0;}
669     _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_SINCE_CXX23 bool all() const _NOEXCEPT {return true;}
670     _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_SINCE_CXX23 bool any() const _NOEXCEPT {return false;}
672     _LIBCPP_INLINE_VISIBILITY size_t __hash_code() const _NOEXCEPT {return 0;}
675 inline
676 _LIBCPP_CONSTEXPR
677 __bitset<0, 0>::__bitset() _NOEXCEPT
681 inline
682 _LIBCPP_CONSTEXPR
683 __bitset<0, 0>::__bitset(unsigned long long) _NOEXCEPT
687 template <size_t _Size> class _LIBCPP_TEMPLATE_VIS bitset;
688 template <size_t _Size> struct hash<bitset<_Size> >;
690 template <size_t _Size>
691 class _LIBCPP_TEMPLATE_VIS bitset
692     : private __bitset<_Size == 0 ? 0 : (_Size - 1) / (sizeof(size_t) * CHAR_BIT) + 1, _Size>
694 public:
695     static const unsigned __n_words = _Size == 0 ? 0 : (_Size - 1) / (sizeof(size_t) * CHAR_BIT) + 1;
696     typedef __bitset<__n_words, _Size> base;
698 public:
699     typedef typename base::reference       reference;
700     typedef typename base::const_reference const_reference;
702     // 23.3.5.1 constructors:
703     _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR bitset() _NOEXCEPT {}
704     _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR
705         bitset(unsigned long long __v) _NOEXCEPT : base(__v) {}
706     template <class _CharT, class = __enable_if_t<_IsCharLikeType<_CharT>::value> >
707     _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX23 explicit bitset(
708         const _CharT* __str,
709 #  if _LIBCPP_STD_VER >= 26
710         typename basic_string_view<_CharT>::size_type __n = basic_string_view<_CharT>::npos,
711 #  else
712         typename basic_string<_CharT>::size_type __n = basic_string<_CharT>::npos,
713 #  endif
714         _CharT __zero = _CharT('0'),
715         _CharT __one  = _CharT('1')) {
717         size_t __rlen = std::min(__n, char_traits<_CharT>::length(__str));
718         __init_from_string_view(basic_string_view<_CharT>(__str, __rlen), __zero, __one);
719     }
720 #if _LIBCPP_STD_VER >= 26
721     template <class _CharT, class _Traits>
722     _LIBCPP_HIDE_FROM_ABI constexpr explicit bitset(
723         basic_string_view<_CharT, _Traits> __str,
724         typename basic_string_view<_CharT, _Traits>::size_type __pos = 0,
725         typename basic_string_view<_CharT, _Traits>::size_type __n   = basic_string_view<_CharT, _Traits>::npos,
726         _CharT __zero                                                = _CharT('0'),
727         _CharT __one                                                 = _CharT('1')) {
728         if (__pos > __str.size())
729             __throw_out_of_range("bitset string pos out of range");
731         size_t __rlen = std::min(__n, __str.size() - __pos);
732         __init_from_string_view(basic_string_view<_CharT, _Traits>(__str.data() + __pos, __rlen), __zero, __one);
733     }
734 #endif
735     template <class _CharT, class _Traits, class _Allocator>
736     _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX23 explicit bitset(
737         const basic_string<_CharT, _Traits, _Allocator>& __str,
738         typename basic_string<_CharT, _Traits, _Allocator>::size_type __pos = 0,
739         typename basic_string<_CharT, _Traits, _Allocator>::size_type __n =
740             basic_string<_CharT, _Traits, _Allocator>::npos,
741         _CharT __zero = _CharT('0'),
742         _CharT __one  = _CharT('1')) {
743         if (__pos > __str.size())
744             std::__throw_out_of_range("bitset string pos out of range");
746         size_t __rlen = std::min(__n, __str.size() - __pos);
747         __init_from_string_view(basic_string_view<_CharT, _Traits>(__str.data() + __pos, __rlen), __zero, __one);
748     }
750     // 23.3.5.2 bitset operations:
751     _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_SINCE_CXX23
752     bitset& operator&=(const bitset& __rhs) _NOEXCEPT;
753     _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_SINCE_CXX23
754     bitset& operator|=(const bitset& __rhs) _NOEXCEPT;
755     _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_SINCE_CXX23
756     bitset& operator^=(const bitset& __rhs) _NOEXCEPT;
757     _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX23
758     bitset& operator<<=(size_t __pos) _NOEXCEPT;
759     _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX23
760     bitset& operator>>=(size_t __pos) _NOEXCEPT;
761     _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_SINCE_CXX23
762     bitset& set() _NOEXCEPT;
763     _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX23
764     bitset& set(size_t __pos, bool __val = true);
765     _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_SINCE_CXX23
766     bitset& reset() _NOEXCEPT;
767     _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX23
768     bitset& reset(size_t __pos);
769     _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_SINCE_CXX23
770     bitset  operator~() const _NOEXCEPT;
771     _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_SINCE_CXX23
772     bitset& flip() _NOEXCEPT;
773     _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX23
774     bitset& flip(size_t __pos);
776     // element access:
777 #ifdef _LIBCPP_ABI_BITSET_VECTOR_BOOL_CONST_SUBSCRIPT_RETURN_BOOL
778     _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR            bool operator[](size_t __p) const {return base::__make_ref(__p);}
779 #else
780     _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR const_reference operator[](size_t __p) const {return base::__make_ref(__p);}
781 #endif
782     _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX23 reference operator[](size_t __p)       {return base::__make_ref(__p);}
783     _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_SINCE_CXX23
784     unsigned long to_ulong() const;
785     _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_SINCE_CXX23
786     unsigned long long to_ullong() const;
787     template <class _CharT, class _Traits, class _Allocator>
788     _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX23
789         basic_string<_CharT, _Traits, _Allocator> to_string(_CharT __zero = _CharT('0'),
790                                                             _CharT __one = _CharT('1')) const;
791     template <class _CharT, class _Traits>
792         _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_SINCE_CXX23
793         basic_string<_CharT, _Traits, allocator<_CharT> > to_string(_CharT __zero = _CharT('0'),
794                                                                     _CharT __one = _CharT('1')) const;
795     template <class _CharT>
796         _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_SINCE_CXX23
797         basic_string<_CharT, char_traits<_CharT>, allocator<_CharT> > to_string(_CharT __zero = _CharT('0'),
798                                                                                 _CharT __one = _CharT('1')) const;
799     _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_SINCE_CXX23
800     basic_string<char, char_traits<char>, allocator<char> > to_string(char __zero = '0',
801                                                                       char __one = '1') const;
802     _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_SINCE_CXX23
803     size_t count() const _NOEXCEPT;
804     _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR size_t size() const _NOEXCEPT {return _Size;}
805     _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_SINCE_CXX23
806     bool operator==(const bitset& __rhs) const _NOEXCEPT;
807 #if _LIBCPP_STD_VER <= 17
808     _LIBCPP_INLINE_VISIBILITY
809     bool operator!=(const bitset& __rhs) const _NOEXCEPT;
810 #endif
811     _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX23
812     bool test(size_t __pos) const;
813     _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_SINCE_CXX23
814     bool all() const _NOEXCEPT;
815     _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_SINCE_CXX23
816     bool any() const _NOEXCEPT;
817     _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_SINCE_CXX23 bool none() const _NOEXCEPT {return !any();}
818     _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_SINCE_CXX23
819     bitset operator<<(size_t __pos) const _NOEXCEPT;
820     _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_SINCE_CXX23
821     bitset operator>>(size_t __pos) const _NOEXCEPT;
823 private:
824     template <class _CharT, class _Traits>
825     _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX23 void
826     __init_from_string_view(basic_string_view<_CharT, _Traits> __str, _CharT __zero, _CharT __one) {
828         for (size_t __i = 0; __i < __str.size(); ++__i)
829             if (!_Traits::eq(__str[__i], __zero) && !_Traits::eq(__str[__i], __one))
830               std::__throw_invalid_argument("bitset string ctor has invalid argument");
832         size_t __mp = std::min(__str.size(), _Size);
833         size_t __i  = 0;
834         for (; __i < __mp; ++__i) {
835             _CharT __c   = __str[__mp - 1 - __i];
836             (*this)[__i] = _Traits::eq(__c, __one);
837         }
838         std::fill(base::__make_iter(__i), base::__make_iter(_Size), false);
839     }
841     _LIBCPP_INLINE_VISIBILITY
842     size_t __hash_code() const _NOEXCEPT {return base::__hash_code();}
844     friend struct hash<bitset>;
847 template <size_t _Size>
848 inline
849 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX23
850 bitset<_Size>&
851 bitset<_Size>::operator&=(const bitset& __rhs) _NOEXCEPT
853     base::operator&=(__rhs);
854     return *this;
857 template <size_t _Size>
858 inline
859 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX23
860 bitset<_Size>&
861 bitset<_Size>::operator|=(const bitset& __rhs) _NOEXCEPT
863     base::operator|=(__rhs);
864     return *this;
867 template <size_t _Size>
868 inline
869 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX23
870 bitset<_Size>&
871 bitset<_Size>::operator^=(const bitset& __rhs) _NOEXCEPT
873     base::operator^=(__rhs);
874     return *this;
877 template <size_t _Size>
878 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX23
879 bitset<_Size>&
880 bitset<_Size>::operator<<=(size_t __pos) _NOEXCEPT
882     __pos = _VSTD::min(__pos, _Size);
883     _VSTD::copy_backward(base::__make_iter(0), base::__make_iter(_Size - __pos), base::__make_iter(_Size));
884     _VSTD::fill_n(base::__make_iter(0), __pos, false);
885     return *this;
888 template <size_t _Size>
889 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX23
890 bitset<_Size>&
891 bitset<_Size>::operator>>=(size_t __pos) _NOEXCEPT
893     __pos = _VSTD::min(__pos, _Size);
894     _VSTD::copy(base::__make_iter(__pos), base::__make_iter(_Size), base::__make_iter(0));
895     _VSTD::fill_n(base::__make_iter(_Size - __pos), __pos, false);
896     return *this;
899 template <size_t _Size>
900 inline
901 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX23
902 bitset<_Size>&
903 bitset<_Size>::set() _NOEXCEPT
905     _VSTD::fill_n(base::__make_iter(0), _Size, true);
906     return *this;
909 template <size_t _Size>
910 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX23
911 bitset<_Size>&
912 bitset<_Size>::set(size_t __pos, bool __val)
914     if (__pos >= _Size)
915         __throw_out_of_range("bitset set argument out of range");
917     (*this)[__pos] = __val;
918     return *this;
921 template <size_t _Size>
922 inline
923 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX23
924 bitset<_Size>&
925 bitset<_Size>::reset() _NOEXCEPT
927     _VSTD::fill_n(base::__make_iter(0), _Size, false);
928     return *this;
931 template <size_t _Size>
932 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX23
933 bitset<_Size>&
934 bitset<_Size>::reset(size_t __pos)
936     if (__pos >= _Size)
937         __throw_out_of_range("bitset reset argument out of range");
939     (*this)[__pos] = false;
940     return *this;
943 template <size_t _Size>
944 inline
945 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX23
946 bitset<_Size>
947 bitset<_Size>::operator~() const _NOEXCEPT
949     bitset __x(*this);
950     __x.flip();
951     return __x;
954 template <size_t _Size>
955 inline
956 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX23
957 bitset<_Size>&
958 bitset<_Size>::flip() _NOEXCEPT
960     base::flip();
961     return *this;
964 template <size_t _Size>
965 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX23
966 bitset<_Size>&
967 bitset<_Size>::flip(size_t __pos)
969     if (__pos >= _Size)
970         __throw_out_of_range("bitset flip argument out of range");
972     reference __r = base::__make_ref(__pos);
973     __r = ~__r;
974     return *this;
977 template <size_t _Size>
978 inline
979 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX23
980 unsigned long
981 bitset<_Size>::to_ulong() const
983     return base::to_ulong();
986 template <size_t _Size>
987 inline
988 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX23
989 unsigned long long
990 bitset<_Size>::to_ullong() const
992     return base::to_ullong();
995 template <size_t _Size>
996 template <class _CharT, class _Traits, class _Allocator>
997 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX23
998 basic_string<_CharT, _Traits, _Allocator>
999 bitset<_Size>::to_string(_CharT __zero, _CharT __one) const
1001     basic_string<_CharT, _Traits, _Allocator> __r(_Size, __zero);
1002     for (size_t __i = 0; __i != _Size; ++__i)
1003     {
1004         if ((*this)[__i])
1005             __r[_Size - 1 - __i] = __one;
1006     }
1007     return __r;
1010 template <size_t _Size>
1011 template <class _CharT, class _Traits>
1012 inline
1013 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX23
1014 basic_string<_CharT, _Traits, allocator<_CharT> >
1015 bitset<_Size>::to_string(_CharT __zero, _CharT __one) const
1017     return to_string<_CharT, _Traits, allocator<_CharT> >(__zero, __one);
1020 template <size_t _Size>
1021 template <class _CharT>
1022 inline
1023 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX23
1024 basic_string<_CharT, char_traits<_CharT>, allocator<_CharT> >
1025 bitset<_Size>::to_string(_CharT __zero, _CharT __one) const
1027     return to_string<_CharT, char_traits<_CharT>, allocator<_CharT> >(__zero, __one);
1030 template <size_t _Size>
1031 inline
1032 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX23
1033 basic_string<char, char_traits<char>, allocator<char> >
1034 bitset<_Size>::to_string(char __zero, char __one) const
1036     return to_string<char, char_traits<char>, allocator<char> >(__zero, __one);
1039 template <size_t _Size>
1040 inline
1041 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX23
1042 size_t
1043 bitset<_Size>::count() const _NOEXCEPT
1045     return static_cast<size_t>(_VSTD::__count_bool<true>(base::__make_iter(0), _Size));
1048 template <size_t _Size>
1049 inline
1050 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX23
1051 bool
1052 bitset<_Size>::operator==(const bitset& __rhs) const _NOEXCEPT
1054     return _VSTD::equal(base::__make_iter(0), base::__make_iter(_Size), __rhs.__make_iter(0));
1057 #if _LIBCPP_STD_VER <= 17
1059 template <size_t _Size>
1060 inline
1061 _LIBCPP_HIDE_FROM_ABI
1062 bool
1063 bitset<_Size>::operator!=(const bitset& __rhs) const _NOEXCEPT
1065     return !(*this == __rhs);
1068 #endif
1070 template <size_t _Size>
1071 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX23
1072 bool
1073 bitset<_Size>::test(size_t __pos) const
1075     if (__pos >= _Size)
1076         __throw_out_of_range("bitset test argument out of range");
1078     return (*this)[__pos];
1081 template <size_t _Size>
1082 inline
1083 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX23
1084 bool
1085 bitset<_Size>::all() const _NOEXCEPT
1087     return base::all();
1090 template <size_t _Size>
1091 inline
1092 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX23
1093 bool
1094 bitset<_Size>::any() const _NOEXCEPT
1096     return base::any();
1099 template <size_t _Size>
1100 inline
1101 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX23
1102 bitset<_Size>
1103 bitset<_Size>::operator<<(size_t __pos) const _NOEXCEPT
1105     bitset __r = *this;
1106     __r <<= __pos;
1107     return __r;
1110 template <size_t _Size>
1111 inline
1112 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX23
1113 bitset<_Size>
1114 bitset<_Size>::operator>>(size_t __pos) const _NOEXCEPT
1116     bitset __r = *this;
1117     __r >>= __pos;
1118     return __r;
1121 template <size_t _Size>
1122 inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_SINCE_CXX23
1123 bitset<_Size>
1124 operator&(const bitset<_Size>& __x, const bitset<_Size>& __y) _NOEXCEPT
1126     bitset<_Size> __r = __x;
1127     __r &= __y;
1128     return __r;
1131 template <size_t _Size>
1132 inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_SINCE_CXX23
1133 bitset<_Size>
1134 operator|(const bitset<_Size>& __x, const bitset<_Size>& __y) _NOEXCEPT
1136     bitset<_Size> __r = __x;
1137     __r |= __y;
1138     return __r;
1141 template <size_t _Size>
1142 inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_SINCE_CXX23
1143 bitset<_Size>
1144 operator^(const bitset<_Size>& __x, const bitset<_Size>& __y) _NOEXCEPT
1146     bitset<_Size> __r = __x;
1147     __r ^= __y;
1148     return __r;
1151 template <size_t _Size>
1152 struct _LIBCPP_TEMPLATE_VIS hash<bitset<_Size> >
1153     : public __unary_function<bitset<_Size>, size_t>
1155     _LIBCPP_INLINE_VISIBILITY
1156     size_t operator()(const bitset<_Size>& __bs) const _NOEXCEPT
1157         {return __bs.__hash_code();}
1160 template <class _CharT, class _Traits, size_t _Size>
1161 _LIBCPP_HIDE_FROM_ABI basic_istream<_CharT, _Traits>&
1162 operator>>(basic_istream<_CharT, _Traits>& __is, bitset<_Size>& __x);
1164 template <class _CharT, class _Traits, size_t _Size>
1165 _LIBCPP_HIDE_FROM_ABI basic_ostream<_CharT, _Traits>&
1166 operator<<(basic_ostream<_CharT, _Traits>& __os, const bitset<_Size>& __x);
1168 _LIBCPP_END_NAMESPACE_STD
1170 _LIBCPP_POP_MACROS
1172 #if !defined(_LIBCPP_REMOVE_TRANSITIVE_INCLUDES) && _LIBCPP_STD_VER <= 20
1173 #  include <concepts>
1174 #  include <cstdlib>
1175 #  include <type_traits>
1176 #endif
1178 #endif // _LIBCPP_BITSET