removeWhere 抽象方法

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

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

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

实现

void removeWhere(bool test(E element));