Filters an iterable object using the given predicate. Unlike Array#filter, this doesn't create a new Array in memory, the filter is done on iteration.
Array#filter
Returns true if the element should be included in the new iteration.
Filters an iterable object using the given predicate. Unlike
Array#filter, this doesn't create a new Array in memory, the filter is done on iteration.Param: iterable
Param: predicate
Returns true if the element should be included in the new iteration.