std::experimental:: erase_if (std::forward_list)
From cppreference.net
<
cpp
|
experimental
|
ヘッダーで定義
<experimental/forward_list>
|
||
|
template
<
class
T,
class
Alloc,
class
Pred
>
void erase_if ( std:: forward_list < T, Alloc > & c, Pred pred ) ; |
(ライブラリ基盤仕様 TS v2) | |
コンテナから述語 pred を満たす全ての要素を削除します。 c. remove_if ( pred ) ; と等価です。
目次 |
パラメータ
| c | - | 要素を削除するコンテナ |
| pred | - | 削除対象の要素を決定する述語 |
計算量
線形。
例
このコードを実行
#include <experimental/forward_list> #include <iostream> template<typename Os, typename Container> inline Os& operator<<(Os& os, Container const& container) { os << "{ "; for (const auto& item : container) os << item << ' '; return os << '}'; } int main() { std::forward_list<int> data{3, 3, 4, 5, 5, 6, 6, 7, 2, 1, 0}; std::cout << "Original:\n" << data << '\n'; auto divisible_by_3 = [](auto const& x) { return (x % 3) == 0; }; std::experimental::erase_if(data, divisible_by_3); std::cout << "Erase all items divisible by 3:\n" << data << '\n'; }
出力:
Original:
{ 3 3 4 5 5 6 6 7 2 1 0 }
Erase all items divisible by 3:
{ 4 5 5 7 2 1 }
関連項目
|
特定の条件を満たす要素を削除する
(関数テンプレート) |
|
|
特定の条件を満たす要素を削除する
(
std::forward_list<T,Allocator>
の公開メンバ関数)
|
|
|
(library fundamentals 2 TS)
|
特定の値に等しいすべての要素を
std::forward_list
から削除する
(関数テンプレート) |