removeWhereEmit abstract method

int removeWhereEmit(
  1. bool test(
    1. T item
    )
)

Removes all items that match the predicate. Returns the number of items removed.

Implementation

int removeWhereEmit(bool Function(T item) test);