(
baseIterators: LazyIterator<LazyIterator<T>>,
baseErrorHandler?: (e: Error) => boolean)
| 81 | * ignored, or whether the base stream should be terminated. |
| 82 | */ |
| 83 | export function iteratorFromConcatenated<T>( |
| 84 | baseIterators: LazyIterator<LazyIterator<T>>, |
| 85 | baseErrorHandler?: (e: Error) => boolean): LazyIterator<T> { |
| 86 | return new ChainedIterator(baseIterators, baseErrorHandler); |
| 87 | } |
| 88 | |
| 89 | /** |
| 90 | * Create a `LazyIterator` by concatenating streams produced by calling a |
no outgoing calls
no test coverage detected
searching dependent graphs…