retainWhere 方法

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

从队列中删除所有不符合 test 条件的元素。

test 函数不得抛出异常或修改队列。

实现

void retainWhere(bool test(E element)) {
  _filter(test, false);
}