import { IterableX } from '../../iterable/iterablex.js'; import { concatAll } from '../../iterable/operators/concatall.js'; /** * @ignore */ export function concatAllProto(this: IterableX>): IterableX { return concatAll()(this); } IterableX.prototype.concatAll = concatAllProto; declare module '../../iterable/iterablex' { interface IterableX { concatAll: typeof concatAllProto; } }