* Apply a function to every element of the stream. * * @param f A function to apply to each stream element.
(f: (value: T) => void)
| 316 | * @param f A function to apply to each stream element. |
| 317 | */ |
| 318 | async forEachAsync(f: (value: T) => void): Promise<void> { |
| 319 | return this.map(f).resolveFully(); |
| 320 | } |
| 321 | |
| 322 | /** |
| 323 | * Apply a function to every element of the stream, forcing serial execution. |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…