Indexed items type.
A type of item values.
A source indexed items list.
A function that values items, taking the source item as the only parameter, and returning either
its value, or false
/null
/undefined
to filter it out.
New push iterable with the item values.
Generated using TypeDoc
Creates a push iterable with the values of items of the given indexed list.
Item value is the result of provided function call, except
false
,null
, andundefined
which are filtered out.This can be used as a more effective mapIndexed / filterIt combination.