Assignment operators
Declared in <util/bitdeque.h>
Copy assignment operator.
bitdeque&
operator=(bitdeque const& other) = default;
» more...
Move assignment operator.
bitdeque&
operator=(bitdeque&& other) noexcept = default;
» more...
Set the container equal to the bits in ilist.
bitdeque&
operator=(std::initializer_list<bool> ilist);
» more...
Reference to this container.
| Name | Description |
|---|---|
| other | Container to copy from. |
| ilist | Initializer list of bit values to copy. |