{"version":3,"sources":["add/iterable-operators/concatall.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,0BAA0B,CAAC;AACrD,OAAO,EAAE,SAAS,EAAE,MAAM,oCAAoC,CAAC;AAE/D;;GAEG;AACH,MAAM,UAAU,cAAc;IAC5B,OAAO,SAAS,EAAK,CAAC,IAAI,CAAC,CAAC;AAC9B,CAAC;AAED,SAAS,CAAC,SAAS,CAAC,SAAS,GAAG,cAAc,CAAC","file":"concatall.js","sourcesContent":["import { IterableX } from '../../iterable/iterablex';\nimport { concatAll } from '../../iterable/operators/concatall';\n\n/**\n * @ignore\n */\nexport function concatAllProto<T>(this: IterableX<Iterable<T>>): IterableX<T> {\n  return concatAll<T>()(this);\n}\n\nIterableX.prototype.concatAll = concatAllProto;\n\ndeclare module '../../iterable/iterablex' {\n  interface IterableX<T> {\n    concatAll: typeof concatAllProto;\n  }\n}\n"]}