retainWhere 抽象方法

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

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

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

实现

void retainWhere(bool test(E element));