Assignment operators
Declared in <util/bitset.h>
Copy assign a bitset.
constexpr
IntBitSet&
operator=(IntBitSet const& other) noexcept = default;
» more...
Assign from a list of positions (which will be made true, all others false).
constexpr
IntBitSet&
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. |