UNPKG

756 BTypeScriptView Raw
1import { IterableX } from './iterablex';
2export declare class OnErrorResumeNextIterable<TSource> extends IterableX<TSource> {
3 private _source;
4 constructor(source: Iterable<Iterable<TSource>>);
5 [Symbol.iterator](): Generator<any, void, unknown>;
6}
7/**
8 * Concatenates all of the specified iterable sequences, even if the previous iterable sequence terminated exceptionally.
9 *
10 * @export
11 * @template T The type of the elements in the source sequences.
12 * @param {...Iterable<T>[]} args iterable sequences to concatenate.
13 * @returns {IterableX<T>} An iterable sequence that concatenates the source sequences, even if a sequence terminates exceptionally.
14 */
15export declare function onErrorResumeNext<T>(...source: Iterable<T>[]): IterableX<T>;