Namespaces
Variants
Views
Actions

std::flat_set<Key,Compare,KeyContainer>::swap

From cppreference.com
< cpp‎ | container‎ | flat set
 
 
 
 
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);

Contents

Parameters

other - container adaptor to exchange the contents with

Return value

(none)

Exceptions

(none)

Complexity

Same as underlying container (typically constant).

Example

See also

specializes the std::swap algorithm
(function template) [edit]