UNPKG

ts-ds-tool

Version:

Data structure and algorithm of TypeScript

29 lines (28 loc) 624 B
class CollectionEnumerator { constructor(array) { this.array = array; this.index = 0; } next() { this.index++; return this; } get Current() { return { value: this.array[this.index], done: this.array.length > 0 ? this.index === this.array.length - 1 : true, }; } } export class Collection { getEnumerator() { return new CollectionEnumerator(this.toArray()); } toArray() { const arr = []; this.__iterate((item, index) => { arr[index] = item; }); return arr; } }