移除所有通过 test 匹配的元素。
test
此方法效率低下,因为它通过反复移除单个元素来工作,每个元素都可能需要线性时间。
void removeWhere(bool test(E element)) { _filterWhere(test, true); }