stack& operator=( const stack& other ); | (1) | |
stack& operator=( stack&& other ); | (2) | (since C++11) |
Replaces the contents of the container adaptor with those of other
.
other
. Effectively calls c = other.c;
. (implicitly declared)
other
using move semantics. Effectively calls c = std::move(other.c);
(implicitly declared)
other | - | another container adaptor to be used as source |
*this
.
Equivalent to that of operator=
of the underlying container.
constructs the stack (public member function) |
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
http://en.cppreference.com/w/cpp/container/stack/operator=