Filters an iterable, only yielding items which match f.
f
filter([1, 2, 3, 4], e => e % 2 == 0);returns [2, 4] Copy
filter([1, 2, 3, 4], e => e % 2 == 0);returns [2, 4]
When using async iterables, f can be async as well.
Filters an iterable, only yielding items which match
f
.When using async iterables,
f
can be async as well.Param: it
Param: f