A type of source elements.
Target type.
A source iterable.
A predicate function to test that element extends the type TTarget
. Returns true
to keep the
element, orfalse
otherwise. It accepts the tested element as the only parameter.
New push iterable with the elements that pass the test. If no elements passed the test, an empty iterable will be returned.
Creates a push iterable with all source
iterable elements that pass the test implemented by
the provided function.
A type of source elements.
A source iterable.
A predicate function to test each element. Returns true
to keep the element, or false
otherwise.
It accepts the tested element as the only parameter.
New push iterable with the elements that pass the test. If no elements passed the test, an empty iterable will be returned.
Generated using TypeDoc
Creates a push iterable with all
source
iterable elements extending the given type.