#include <util/check.h>
#include <array>
#include <bit>
#include <cstdint>
#include <limits>
#include <type_traits>
Go to the source code of this file.
|
| template<unsigned BITS> |
| using | BitSet |
|
| template<typename I> |
| unsigned constexpr | bitset_detail::PopCount (I v) |
| | Count the number of bits set in an unsigned integer type.
|
◆ BitSet
Initial value:std::conditional_t<(BITS <= 32), bitset_detail::IntBitSet<uint32_t>,
A bitset implementation backed by a single integer of type I.
A bitset implementation backed by N integers of type I.
Definition at line 523 of file bitset.h.