Returns an iterable containing elements that satisfy the given test.
This is a non-mutating operation that returns an iterable.
@override Iterable<E> where(bool Function(E element) test) => value.where(test);