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