A type of converted elements.
A source list of indexed iterables.
New push iterable with each element of indexed list being flattened.
First maps each item of the source indexed list using a mapping function, then flattens the result into new push iterable.
A type of indexed items.
A type of converted elements.
A source list of indexed items to convert.
A function that produces new iterable, taking the list item as the only parameter.
New push iterable with each element being the flattened result of the convert
function call.
Generated using TypeDoc
Flattens the source list of indexed iterables into new push iterable.
Calling this function is the same as calling
flatMapIndexed(source, element => element)
.