removeAll method

void removeAll(
  1. bool test(
    1. E it
    )
)

移除符合条件的元素

Implementation

void removeAll(bool Function(E it) test) => removeWhere(test);