Namespaces
Variants
Actions

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

From cppreference.com
< cpp‎ | container‎ | stack
 
C++
 
Containers library
 
std::stack
stack& operator=( const stack& other );
(1) (implicitly declared)
stack& operator=( stack&& other );
(2) (since C++11)
(implicitly declared)

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

1) Copy assignment operator. Replaces the contents with a copy of the contents of other. Effectively calls c = other.c;.
2) Move assignment operator. Replaces the contents with those of other using move semantics. Effectively calls c = std::move(other.c);.

Contents

[edit] Parameters

other - another container adaptor to be used as source

[edit] Return value

*this

[edit] Complexity

1,2) Equivalent to that of operator= of the underlying container.

[edit] Example

[edit] See also

constructs the stack
(public member function) [edit]

Follow Lee on X/Twitter - Father, Husband, Serial builder creating AI, crypto, games & web tools. We are friends :) AI Will Come To Life!

Check out: eBank.nz (Art Generator) | Netwrck.com (AI Tools) | Text-Generator.io (AI API) | BitBank.nz (Crypto AI) | ReadingTime (Kids Reading) | RewordGame | BigMultiplayerChess | WebFiddle | How.nz | Helix AI Assistant