table of contents
std::flat_set::swap(3) | C++ Standard Libary | std::flat_set::swap(3) |
NAME¶
std::flat_set::swap - std::flat_set::swap
Synopsis¶
void swap( flat_set& other ) noexcept; (since C++23)
Exchanges the contents of the container adaptor with those of other.
Effectively
calls
ranges::swap(compare, other.compare);
ranges::swap(c, other.c);
Parameters¶
other - container adaptor to exchange the contents with
Return value¶
(none)
Exceptions¶
(none)
Complexity¶
Same as underlying container (typically constant).
Example¶
This section is incomplete
Reason: no example
See also¶
std::swap(std::flat_set) specializes the std::swap algorithm
(C++23) (function template)
Category:¶
* Todo no example
2024.06.10 | http://cppreference.com |