bitset_detail::IntBitSet::IntBitSet

Constructors

Synopses

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...

Parameters

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