命名空间
变体
操作

std::experimental::erase (std::forward_list)

来自 cppreference.com
在头文件中定义 <experimental/forward_list>
template< class T, class A, class U >
void erase( std::forward_list<T, A>& c, const U& value );
(库基础 TS v2)

从容器中擦除所有与 value 相等的元素。等同于 c.remove_if([&](auto& elem) { return elem == value; });.

内容

[编辑] 参数

c - 要擦除的容器
value - 要删除的值

[编辑] 复杂度

线性。

[编辑] 示例

#include <experimental/forward_list>
#include <iostream>
 
auto show = [](const auto& container)
{
    for (auto e : container)
        std::cout << e;
    std::cout << '\n';
};
 
int main()
{
    std::forward_list<int> data{1, 1, 1, 4, 1, 1, 1, 2, 1, 1, 1};
    show(data);
    std::experimental::erase(data, 1);
    show(data);
}

输出

11141112111
42

注释

std::forward_list::remove 不同,此函数模板接受异构类型,并且在调用 == 运算符之前不会强制转换为容器的值类型。

[编辑] 另请参阅

删除满足特定条件的元素
(函数模板) [编辑]
删除满足特定条件的元素
(std::forward_list<T,Allocator> 的公共成员函数) [编辑]
std::forward_list 中擦除所有满足谓词的元素
(函数模板) [编辑]