从队列中删除所有不符合 test 条件的元素。
test
test 函数不得抛出异常或修改队列。
void retainWhere(bool test(E element)) { _filter(test, false); }