removeWhere 方法

void removeWhere(
  1. bool test(
    1. E element
    )
)
override

从队列中移除所有匹配 test 的元素。

函数 test 应当不会抛出异常或修改队列。

实现

void removeWhere(bool test(E element)) {
  _filter(test, true);
}