std::stack<T,Container>::operator=

Replaces the contents of the container adaptor with the contents of given argument.

# Declarations

stack& operator=( const stack& other );

(implicitly declared)

stack& operator=( stack&& other );

(since C++11) (implicitly declared)

# Parameters

# Return value

*this

# Example

This section is incompleteReason: no example

# See also