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