std::swap(std::flat_multimap)
De cppreference.com
| Definido en el archivo de encabezado <flat_map>
|
||
friend void swap( std::flat_multimap& lhs, std::flat_multimap& rhs ) noexcept;
|
(desde C++23) | |
Especializa el algoritmo std::swap para std::flat_multimap. Intercambia el contenido de lhs y rhs. Llama a lhs.swap(rhs).
Parámetros
| lhs, rhs | - | Los contenedores cuyo contenido hay que intercambiar. |
Valor de retorno
(Ninguno)
Complejidad
La misma que intercambiar los contenedores subyacentes.
Ejemplo
Ejecuta este código
#include <algorithm>
#include <iostream>
#include <flat_map>
int main()
{
std::flat_multimap<int, char> alice{{1, 'a'}, {2, 'b'}, {3, 'c'}};
std::flat_multimap<int, char> bob{{7, 'Z'}, {8, 'Y'}, {9, 'X'}, {10, 'W'}};
auto print = [](std::pair<const int, char>& n)
{
std::cout << ' ' << n.first << ':' << n.second;
};
// Imprimir estado antes del intercambio
std::cout << "Alice:";
std::for_each(alice.begin(), alice.end(), print);
std::cout << "\nBobby:";
std::for_each(bob.begin(), bob.end(), print);
std::cout << '\n';
std::cout << "-- INTERCAMBIO\n";
std::swap(alice, bob);
// Imprimir estado después del intercambio
std::cout << "Alice:";
std::for_each(alice.begin(), alice.end(), print);
std::cout << "\nBobby:";
std::for_each(bob.begin(), bob.end(), print);
std::cout << '\n';
}
Salida:
Alice: 1:a 2:b 3:c
Bobby: 7:Z 8:Y 9:X 10:W
-- INTERCAMBIO
Alice: 7:Z 8:Y 9:X 10:W
Bobby: 1:a 2:b 3:c
Véase también
(C++23) |
Intercambia el contenido. (función miembro pública) |