std::queue<T,Container>::operator=
Min standard notice:
Replaces the contents of the container adaptor with the contents of given argument.
# Declarations
queue& operator=( const queue& other );
(implicitly declared)
queue& operator=( queue&& other );
(since C++11) (implicitly declared)
# Parameters
other: another container adaptor to be used as source
# Return value
*this
# Example
This section is incompleteReason: no example