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