@reactivex/ix-esnext-esm
Version:
The Interactive Extensions for JavaScript
34 lines (32 loc) • 895 B
JavaScript
import { IterableX } from '../iterablex';
export class SliceIterable extends IterableX {
constructor(source, begin, end) {
super();
this._source = source;
this._begin = begin;
this._end = end;
}
*[Symbol.iterator]() {
const it = this._source[Symbol.iterator]();
let begin = this._begin;
let next;
while (begin > 0 && !(next = it.next()).done) {
begin--;
}
let end = this._end;
if (end > 0) {
while (!(next = it.next()).done) {
yield next.value;
if (--end === 0) {
break;
}
}
}
}
}
export function slice(begin, end = Infinity) {
return function sliceOperatorFunction(source) {
return new SliceIterable(source, begin, end);
};
}
//# sourceMappingURL=slice.mjs.map