bitset_detail::MultiIntBitSet::MultiIntBitSet

Constructors

Synopses

Declared in <util/bitset.h>

Construct an all-zero bitset.

constexpr
MultiIntBitSet() noexcept;
» more...

Copy construct a bitset.

constexpr
MultiIntBitSet(MultiIntBitSet const& other) noexcept = default;
» more...

Construct a bitset from a list of values.

constexpr
MultiIntBitSet(std::initializer_list<unsigned int> ilist) noexcept;
» more...

Parameters

NameDescription
otherThe bitset to copy from.
ilistThe bit positions to set to 1.