std::priority_queue<T,Container,Compare>::operator=
From cppreference.com
< cpp | container | priority queue
C++
Feature test macros (C++20)
Concepts library (C++20)
Metaprogramming library (C++11)
Ranges library (C++20)
Filesystem library (C++17)
Concurrency support library (C++11)
Execution control library (C++26)
Containers library
(C++17)
(C++11)
(C++26)
(C++26)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++23)
(C++23)
(C++23)
(C++23)
(C++20)
(C++23)
Tables
std::priority_queue
priority_queue& operator=( const priority_queue& other );
(1)
(implicitly declared)
priority_queue& operator=( priority_queue&& 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; comp = other.comp;.
2) Move assignment operator. Replaces the contents with those of other using move semantics. Effectively calls c = std::move(other.c); comp = std::move(other.comp);.
[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
This section is incomplete
Reason: no example
Reason: no example