Assignment operators
Declared in <absl/container/chunked_queue.h>
Copy assignment operator.
chunked_queue&
operator=(chunked_queue const& other);
» more...
Move assignment operator.
chunked_queue<T, BLo, BHi, Allocator>&
operator=(chunked_queue&& other) noexcept;
» more...
Replaces contents with those from initializer list il.
chunked_queue&
operator=(std::initializer_list<T> il);
» more...
A reference to this queue.
| Name | Description |
|---|---|
| other | The queue to copy from. |
| il | The initializer list to copy elements from. |