位置:首页 > > std::experimental::erase (std::vector)
std::experimental::erase (std::vector)
定义于头文件 <experimental/vector>
|
||
template <class T, class A, class U> void erase(std::vector<T, A>& c, const U& value); |
(库基础 TS v2) | |
从容器擦除所有比较等于 value
的元素。等价于 c.erase(std::remove(c.begin(), c.end(), value), c.end());
参数
c | - | 要从中擦除的容器 |
value | - | 要移除的值 |
复杂度
线性。
示例
本节未完成 原因:暂无示例 |
参阅
移除满足特定判别标准的元素 (函数模板) | |
(库基础 2 TS) |
从 std::vector 擦除所有满足谓词的元素 (函数模板) |