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