Removes all elements that satisfy the given predicate.
@override void removeWhere(bool Function(E element) test) { _elements.removeWhere(test); }