Assignment operators
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...
A reference to this bitset.
| Name | Description |
|---|---|
| other | The bitset to copy from. |
| ilist | The bit positions to set to 1. |