bitset_detail::MultiIntBitSet::operator=

Assignment operators

Synopses

Declared in <util/bitset.h>

Copy assign a bitset.

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

Set a bitset to a list of values.

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

Return Value

A reference to this bitset.

Parameters

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