ix
Version:
The Interactive Extensions for JavaScript
42 lines (40 loc) • 1.68 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.flatMap = exports.FlatMapIterable = void 0;
const iterablex_js_1 = require("../iterablex.js");
/** @ignore */
class FlatMapIterable extends iterablex_js_1.IterableX {
constructor(source, fn, thisArg) {
super();
this._source = source;
this._fn = fn;
this._thisArg = thisArg;
}
*[Symbol.iterator]() {
let index = 0;
for (const outerItem of this._source) {
for (const innerItem of this._fn.call(this._thisArg, outerItem, index++)) {
yield innerItem;
}
}
}
}
exports.FlatMapIterable = FlatMapIterable;
/**
* Projects each element of an iterable sequence to an iterable sequence and merges
* the resulting iterable sequences into one iterable sequence.
*
* @template TSource The type of the elements in the source sequence.
* @template TResult The type of the elements in the projected inner sequences and the elements in the merged result sequence.
* @param {((value: TSource, index: number) => Iterable<TResult>)} selector A transform function to apply to each element.
* @param {*} [thisArg] Option this for binding to the selector.
* @returns {OperatorFunction<TSource, TResult>} An operator that creates an iterable sequence whose
* elements are the result of invoking the one-to-many transform function on each element of the input sequence.
*/
function flatMap(selector, thisArg) {
return function flatMapOperatorFunction(source) {
return new FlatMapIterable(source, selector, thisArg);
};
}
exports.flatMap = flatMap;
//# sourceMappingURL=flatmap.js.map