Filters the elements in the list based on the predicate test.
test
@override Iterable<T> where(bool Function(T) test) => _items.where(test);