Constructors
Declared in <util/bitset.h>
Construct an all-zero bitset.
constexpr
IntBitSet() noexcept;
» more...
Copy construct a bitset.
constexpr
IntBitSet(IntBitSet const& other) noexcept = default;
» more...
Construct from a list of values.
constexpr
IntBitSet(std::initializer_list<unsigned int> ilist) noexcept;
» more...
| Name | Description |
|---|---|
| other | The bitset to copy from. |
| ilist | The bit positions to set to 1. |