removeWhere 抽象方法

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

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

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

实现

void removeWhere(bool test(E element));