Difference between revisions of "cpp/container/list/unique"
m (Add link to edit the included template) |
m (langlinks) |
||
(2 intermediate revisions by one user not shown) | |||
Line 1: | Line 1: | ||
− | {{page | + | {{include page|cpp/container/unique|list}} |
− | + | {{langlinks|de|es|fr|it|ja|pt|ru|zh}} |
Latest revision as of 03:44, 21 June 2021
(1) | ||
void unique(); |
(until C++20) | |
size_type unique(); |
(since C++20) | |
(2) | ||
template< class BinaryPredicate > void unique( BinaryPredicate p ); |
(until C++20) | |
template< class BinaryPredicate > size_type unique( BinaryPredicate p ); |
(since C++20) | |
Removes all consecutive duplicate elements from the container. Only the first element in each group of equal elements is left. Invalidates only the iterators and references to the removed elements.
The behavior is undefined if the corresponding comparator does not establish an equivalence relation.
Contents |
[edit] Parameters
p | - | binary predicate which returns true if the elements should be treated as equal. The signature of the predicate function should be equivalent to the following: bool pred(const Type1 &a, const Type2 &b); While the signature does not need to have const &, the function must not modify the objects passed to it and must be able to accept all values of type (possibly const) |
Type requirements | ||
-BinaryPredicate must meet the requirements of BinaryPredicate.
|
[edit] Return value
(none) |
(until C++20) |
The number of elements removed. |
(since C++20) |
[edit] Complexity
If empty() is true, no comparison is performed.
Otherwise, given N as std::distance(begin(), end()):
[edit] Notes
Feature-test macro | Value | Std | Feature |
---|---|---|---|
__cpp_lib_list_remove_return_type |
201806L | (C++20) | Change the return type |
[edit] Example
#include <iostream> #include <list> std::ostream& operator<< (std::ostream& os, std::list<int> const& container) { for (int val : container) os << val << ' '; return os << '\n'; } int main() { std::list<int> c{1, 2, 2, 3, 3, 2, 1, 1, 2}; std::cout << "Before unique(): " << c; const auto count1 = c.unique(); std::cout << "After unique(): " << c << count1 << " elements were removed\n"; c = {1, 2, 12, 23, 3, 2, 51, 1, 2, 2}; std::cout << "\nBefore unique(pred): " << c; const auto count2 = c.unique([mod = 10](int x, int y) { return (x % mod) == (y % mod); }); std::cout << "After unique(pred): " << c << count2 << " elements were removed\n"; }
Output:
Before unique(): 1 2 2 3 3 2 1 1 2 After unique(): 1 2 3 2 1 2 3 elements were removed Before unique(pred): 1 2 12 23 3 2 51 1 2 2 After unique(pred): 1 2 23 2 51 2 4 elements were removed
Defect reports
The following behavior-changing defect reports were applied retroactively to previously published C++ standards.
DR | Applied to | Behavior as published | Correct behavior |
---|---|---|---|
LWG 1207 | C++98 | it was unclear whether iterators and/or references will be invalidated |
only invalidates iterators and references to the removed elements |
[edit] See also
removes consecutive duplicate elements in a range (function template) |