![]() |
Bitcoin Core 31.0.0
P2P Digital Currency
|
#include <util/check.h>#include <array>#include <bit>#include <cstdint>#include <limits>#include <type_traits>Go to the source code of this file.
Classes | |
| class | bitset_detail::IntBitSet< I > |
| A bitset implementation backed by a single integer of type I. More... | |
| class | bitset_detail::IntBitSet< I >::IteratorEnd |
| Dummy type to return using end(). More... | |
| class | bitset_detail::IntBitSet< I >::Iterator |
| Iterator type returned by begin(), which efficiently iterates all 1 positions. More... | |
| class | bitset_detail::MultiIntBitSet< I, N > |
| A bitset implementation backed by N integers of type I. More... | |
| class | bitset_detail::MultiIntBitSet< I, N >::IteratorEnd |
| Dummy type to return using end(). More... | |
| class | bitset_detail::MultiIntBitSet< I, N >::Iterator |
| Iterator type returned by begin(), which efficiently iterates all 1 positions. More... | |
Namespaces | |
| namespace | bitset_detail |
Typedefs | |
| template<unsigned BITS> | |
| using | BitSet |
Functions | |
| template<typename I > | |
| unsigned constexpr | bitset_detail::PopCount (I v) |
| Count the number of bits set in an unsigned integer type. | |