* Maps this stream through a 1-to-many transform. * * @param transform A function mapping a stream element to an array of * transformed elements. * * @returns A `DataStream` of transformed elements.
(transform: (value: T) => O[])
| 307 | * @returns A `DataStream` of transformed elements. |
| 308 | */ |
| 309 | flatmap<O>(transform: (value: T) => O[]): LazyIterator<O> { |
| 310 | return new FlatmapIterator(this, transform); |
| 311 | } |
| 312 | |
| 313 | /** |
| 314 | * Apply a function to every element of the stream. |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…