kennen:lib:remove_copy
Inhaltsverzeichnis
remove_copy()
#include
<algorithm>
Out remove_copy (In first, In last, Out result, T wert) Out remove_copy (Exec pol, In first, In last, Out result, T wert) [last, res] = ranges::remove_copy (Range r, Out result, T wert, Proj proj = {}) [last, res] = ranges::remove_copy (In first, In last, Out result, T wert, Proj proj = {})
Kopiert den Bereich [first,last) nach [result,…)
und entfernt dabei alle Elemente e
mit dem angegebenen wert
.
Parameter
first | Anfang des Bereiches |
last | Ende des Bereiches |
result | Anfang des Zielbereiches |
wert | zu entfernender Wert |
proj | einstelliger Funktor (Vorgabe = std::identity ) |
pol | parallele Ausführungsart |
Ergebnis
Rückgabewert: Iterator result+N
auf das Ende des Zielbereiches bzw. {last,result+N}
mit N kopierten Elementen
als Struktur mit Elementen namens in, out
.
Siehe auch
Beispiel
- remove_copy.cpp
#include <algorithm> #include <iterator> #include <string> #include <iostream> int main() { std::string s = "Hallo, Welt"; std::string t; std::cout << s << '\n'; std::remove_copy(begin(s), end(s), std::back_inserter(t), 'l')); std::cout << t << '\n'; }
kennen/lib/remove_copy.txt · Zuletzt geändert: 2023-10-14 12:04 von rrichter