std::queue::operator=
From cppreference.com
queue<T, Container>& operator=( const queue<T,Container>& other ); |
(1) | |
queue<T, Container>& operator=( queue<T,Container>&& other ); |
(2) | (since C++11) |
Replaces the contents of the container adaptor with those of other.
1) Copy assignment operator. Replaces the contents with a copy of the contents of other. Effectively calls c = other.c;. (implicitly declared)
2) Move assignment operator. Replaces the contents with those of other using move semantics. Effectively calls c = std::move(other.c); (implicitly declared)
Contents |
[edit] Parameters
other | - | another container adaptor to be used as source |
[edit] Return value
*this
[edit] Complexity
Equivalent to that of {{{1}}} of the underlying container.
[edit] See also
constructs the queue (public member function) |