Namespaces
Variants

std:: swap (std::unordered_multiset)

From cppreference.net

Definiert im Header <unordered_set>
template < class Key, class Hash, class KeyEqual, class Alloc >

void swap ( std:: unordered_multiset < Key, Hash, KeyEqual, Alloc > & lhs,

std:: unordered_multiset < Key, Hash, KeyEqual, Alloc > & rhs ) ;
(seit C++11)
(bis C++17)
template < class Key, class Hash, class KeyEqual, class Alloc >

void swap ( std:: unordered_multiset < Key, Hash, KeyEqual, Alloc > & lhs,
std:: unordered_multiset < Key, Hash, KeyEqual, Alloc > & rhs )

noexcept ( /* siehe unten */ ) ;
(seit C++17)
(constexpr seit C++26)

Spezialisiert den std::swap -Algorithmus für std::unordered_multiset . Tauscht die Inhalte von lhs und rhs . Ruft lhs. swap ( rhs ) auf.

Inhaltsverzeichnis

Parameter

lhs, rhs - Container, deren Inhalte ausgetauscht werden sollen

Komplexität

Konstante.

Exceptions

noexcept Spezifikation:
noexcept ( noexcept ( lhs. swap ( rhs ) ) )
(seit C++17)

Beispiel

#include <algorithm>
#include <iostream>
#include <unordered_set>
int main()
{
    std::unordered_multiset<int> alice{1, 2, 3};
    std::unordered_multiset<int> bob{7, 8, 9, 10};
    auto print = [](const int& n) { std::cout << ' ' << n; };
    // Zustand vor dem Austausch ausgeben
    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 << "-- AUSTAUSCH\n";
    std::swap(alice, bob);
    // Zustand nach dem Austausch ausgeben
    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';
}

Mögliche Ausgabe:

Alice: 1 2 3
Bobby: 7 8 9 10
-- AUSTAUSCH
Alice: 7 8 9 10
Bobby: 1 2 3

Siehe auch

tauscht die Inhalte aus
(öffentliche Elementfunktion)