[ Web Proxy ]
URL:
Viewing: https://cppreference.com/cpp/container/flat_map/swap [Back]  [Original]

std::flat_map<Key,T,Compare,KeyContainer,MappedContainer>::swap - cppreference.com
cppreference.com
Namespaces
Variants

std::flat_map<Key,T,Compare,KeyContainer,MappedContainer>::swap

From cppreference.com
 
 
 
 
void swap( flat_map& 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.keys, other.c.keys);
ranges::swap(c.values, other.c.values);

Parameters

other - container adaptor to exchange the contents with

Complexity

Same as underlying container (typically constant).

Example

See also

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

Web Proxy Viewer  |  New URL  |  Original Page