std::experimental::erase_if (std::forward_list)
來自 cppreference.com
定義於標頭檔案 <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> 的公共成員函式) | |
(庫基礎 2 TS) |
從 std::forward_list 中擦除所有等於特定值的元素 (函式模板) |