Indexed items type.
Target type.
A source indexed items list.
A predicate function to test that item extends the type TTarget
. Returns true
to keep the element,
or false
otherwise. It accepts the tested item 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 items of the given indexed list that pass the test implemented by the provided function.
Indexed items type.
A source indexed items list.
A predicate function to test each item. Returns true
to keep the item, or false
otherwise.
It accepts the tested item as the only parameter.
New push iterable with the items that pass the test. If no items passed the test, an empty iterable will be returned.
Generated using TypeDoc
Creates a push iterable with all items of the given indexed list that extend the given type.