import { IterableX } from './iterablex'; export declare class ConcatIterable extends IterableX { private _source; constructor(source: Iterable>); [Symbol.iterator](): Generator; } export declare function concat(v1: Iterable): IterableX; /** * Concatenates the second iterable sequence to the first iterable sequence upon successful termination of the first. * * @export * @template T The type of the elements in the first source sequence. * @template T2 The type of the elements in the second source sequence. * @param {Iterable} v1 First iterable source. * @param {Iterable} v2 Second iterable source. * @returns {(IterableX)} An iterable sequence that contains the elements of the first sequence, * followed by those of the second the sequence. */ export declare function concat(v1: Iterable, v2: Iterable): IterableX; /** * Concatenates all iterable sequences in the given sequences, as long as the previous iterable * sequence terminated successfully. * * @export * @template T The type of the elements in the first source sequence. * @template T2 The type of the elements in the second source sequence. * @template T3 The type of the elements in the third source sequence. * @param {Iterable} v1 First iterable source. * @param {Iterable} v2 Second iterable source. * @param {Iterable} v3 Third iterable source. * @returns {(IterableX)} An iterable sequence that contains the elements of each given sequence, in sequential order. */ export declare function concat(v1: Iterable, v2: Iterable, v3: Iterable): IterableX; /** * Concatenates all iterable sequences in the given sequences, as long as the previous iterable * sequence terminated successfully. * * @export * @template T The type of the elements in the first source sequence. * @template T2 The type of the elements in the second source sequence. * @template T3 The type of the elements in the third source sequence. * @template T4 The type of the elements in the fourth source sequence. * @param {Iterable} v1 First iterable source. * @param {Iterable} v2 Second iterable source. * @param {Iterable} v3 Third iterable source. * @param {Iterable} v4 Fourth iterable source. * @returns {(IterableX)} An iterable sequence that contains the elements of each given sequence, in sequential order. */ export declare function concat(v1: Iterable, v2: Iterable, v3: Iterable, v4: Iterable): IterableX; /** * Concatenates all iterable sequences in the given sequences, as long as the previous iterable * sequence terminated successfully. * * @export * @template T The type of the elements in the first source sequence. * @template T2 The type of the elements in the second source sequence. * @template T3 The type of the elements in the third source sequence. * @template T4 The type of the elements in the fourth source sequence. * @template T5 The type of the elements in the fifth source sequence. * @param {Iterable} v1 First iterable source. * @param {Iterable} v2 Second iterable source. * @param {Iterable} v3 Third iterable source. * @param {Iterable} v4 Fourth iterable source. * @param {Iterable} v5 Fifth iterable source. * @returns {(Iterable)} An iterable sequence that contains the elements of each given sequence, in sequential order. */ export declare function concat(v1: Iterable, v2: Iterable, v3: Iterable, v4: Iterable, v5: Iterable): Iterable; /** * Concatenates all iterable sequences in the given sequences, as long as the previous iterable * sequence terminated successfully. * * @export * @template T The type of the elements in the first source sequence. * @template T2 The type of the elements in the second source sequence. * @template T3 The type of the elements in the third source sequence. * @template T4 The type of the elements in the fourth source sequence. * @template T5 The type of the elements in the fifth source sequence. * @template T6 The type of the elements in the sixth source sequence. * @param {Iterable} v1 First iterable source. * @param {Iterable} v2 Second iterable source. * @param {Iterable} v3 Third iterable source. * @param {Iterable} v4 Fourth iterable source. * @param {Iterable} v5 Fifth iterable source. * @param {Iterable} v6 Sixth iterable source. * @returns {(Iterable)} An iterable sequence that contains the elements of each given sequence, in sequential order. */ export declare function concat(v1: Iterable, v2: Iterable, v3: Iterable, v4: Iterable, v5: Iterable, v6: Iterable): Iterable;