namespace std::ranges {
template <input_iterator I,
sentinel_for<I> S,
weakly_incrementable O,
class Proj = identity,
indirect_unary_predicate<projected<I, Proj>> Pred>
requires indirectly_copyable<I, O>
constexpr remove_copy_if_result<I, O>
remove_copy_if(I first,
S last,
O result,
Pred pred,
Proj proj = {}); // (1) C++20
template <input_range R,
weakly_incrementable O,
class Proj = identity,
indirect_unary_predicate<projected<iterator_t<R>, Proj>> Pred>
requires indirectly_copyable<iterator_t<R>, O>
constexpr remove_copy_if_result<borrowed_iterator_t<R>, O>
remove_copy_if(R&& r,
O result,
Pred pred,
Proj proj = {}); // (2) C++20
}
概要
条件を満たす要素を除け、その結果を出力の範囲へコピーする。
- (1): イテレータ範囲を指定する
- (2): Rangeを直接指定する
事前条件
[first,last)
と[result,result + (last - first)
は重なってはならない。
効果
[first,last)
内にあるイテレータ i
について、pred(*i) != false
でない要素を result
へコピーする
戻り値
{ .in = last, .out = result + (last - first) }
計算量
正確に last - first
回の述語の適用を行う
備考
安定
例
#include <algorithm>
#include <iostream>
#include <vector>
#include <iterator>
int main() {
std::vector<int> v = { 2,3,1,2,1 };
// 奇数を除去した結果を出力する
std::ranges::remove_copy_if(v, std::ostream_iterator<int>(std::cout, ","), [](int x) { return x%2 != 0; });
}
出力
2,2,
バージョン
言語
- C++20
処理系
- Clang: ??
- GCC: 10.1.0 ✅
- ICC: ??
- Visual C++: 2019 Update 10 ✅