移除所有符合 test 条件的元素。
test
此方法效率不高,因为它通过反复移除单个元素来实现,每个元素都可能需要线性时间。
void removeWhere(bool test(E element)) { _filterWhere(test, true); }