removeIf method

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

移除符合条件的元素

Implementation

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