A type of converted elements.
A source array-like instance of iterables.
New push iterable with each element of array
being flattened.
First maps each element of the source array
using a mapping function, then flattens the result into new
push iterable.
A type of array elements.
A type of converted elements.
A source array-like instance of elements to convert.
A function that produces new iterable, taking array element 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
array
of iterables into new push iterable.Calling this function is the same as calling
flatMapArray(source, element => element)
.