import { Operator } from '../core/types'; /** * @short * *Concatenate* iterables to the source. * * @categories * operator accepts-iterables * * @description * Prolongs the source iterable by yielding values from provided iterables, * in the order they're given. * * @parameter * ...otherIterables * Array> * Iterables to concatenate to the source. * * @returns * Operator * * @example * j.pipe( * [1, 2], * j.concat([3, 4]), * ) * // => [1, 2, 3, 4] * * @example * j.pipe( * [1], * j.concat([2], [3, 4], [], [5]), * ) * // => [1, 2, 3, 4, 5] */ export declare function concat(...otherIterables: Array>): Operator;