-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathiterator.js
444 lines (384 loc) · 10.7 KB
/
iterator.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
var global = (function () {return this})();
// upgrades an iterator to a Iterator
function Iterator(iterator) {
if (Array.isArray(iterator) || typeof iterator == "string")
return Iterator.iterate(iterator);
iterator = Object(iterator);
if (!(this instanceof Iterator))
return new Iterator(iterator);
this.next = this.send =
iterator.send || iterator.next || iterator;
if (
Object.prototype.toString.call(this.next) !=
"[object Function]"
)
throw new TypeError();
}
Iterator.prototype.toArray = function () {
var self = Iterator(this),
i = 0,
values = [];
if (Array.isArray(this))
return this;
try {
while (true) {
values[i] = self.next();
i++;
}
} catch (exception) {
if (isStopIteration(exception)) {
return values;
} else {
throw exception;
}
}
};
Iterator.prototype.map = function (fun /*, thisp*/) {
var self = Iterator(this),
thisp = arguments[1],
i = 0;
if (Object.prototype.toString.call(fun) != "[object Function]")
throw new TypeError();
return new self.constructor(function () {
return fun.call(thisp, self.next(), i++, self);
});
};
Iterator.prototype.forEach = function (fun /*, thisp*/) {
var self = Iterator(this),
thisp = arguments[1],
i = 0,
value;
if (Object.prototype.toString.call(fun) != "[object Function]")
throw new TypeError();
try {
while (true) {
value = self.next();
fun.call(thisp, value, i, self);
i++;
}
} catch (exception) {
if (isStopIteration(exception)) {
return exception.value;
} else {
throw exception;
}
}
};
Iterator.prototype.reduce = function (fun /*, initial, thisp*/) {
var self = Iterator(this),
result = arguments[1],
thisp = arguments[2],
i = 0,
value;
if (Object.prototype.toString.call(fun) != "[object Function]")
throw new TypeError();
// first iteration unrolled
try {
value = self.next();
if (arguments.length > 1) {
result = fun.call(thisp, result, value, i, self);
} else {
result = value;
}
i++;
} catch (exception) {
if (isStopIteration(exception)) {
if (arguments.length > 1) {
return arguments[1]; // initial
} else {
throw TypeError("cannot reduce a value from an empty iterator with no initial value");
}
} else {
throw exception;
}
}
// remaining entries
try {
while (true) {
value = self.next();
result = fun.call(thisp, result, value, i, self);
i++;
}
} catch (exception) {
if (isStopIteration(exception)) {
return result;
} else {
throw exception;
}
}
};
Iterator.prototype.every = function (fun /*, thisp*/) {
var self = Iterator(this),
thisp = arguments[1],
result = true;
if (Object.prototype.toString.call(fun) != "[object Function]")
throw new TypeError();
self.map.apply(self, arguments)
.forEach(function (value) {
if (!value) {
result = false;
throw StopIteration;
}
});
return result;
};
Iterator.prototype.some = function (fun /*, thisp*/) {
var self = Iterator(this),
thisp = arguments[1],
result = false;
if (Object.prototype.toString.call(fun) != "[object Function]")
throw new TypeError();
self.map.apply(self, arguments)
.forEach(function (value) {
if (value) {
result = true;
throw StopIteration;
}
});
return result;
};
Iterator.prototype.all = function () {
return Iterator(this).every(function (value) {
return value;
});
};
Iterator.prototype.any = function () {
return Iterator(this).some(function (value) {
return value;
});
};
Iterator.prototype.concat = function () {
return Iterator.concat(
Array.prototype.concat.apply(this, arguments)
);
};
Iterator.prototype.dropWhile = function (fun /*, thisp */) {
var self = Iterator(this),
thisp = arguments[1],
stopped = false,
stopValue;
if (Object.prototype.toString.call(fun) != "[object Function]")
throw new TypeError();
self.forEach(function (value, i) {
if (!fun.call(thisp, value, i, self)) {
stopped = true;
stopValue = value;
throw StopIteration;
}
});
if (stopped) {
return self.constructor([stopValue]).concat(self);
} else {
return self.constructor([]);
}
};
Iterator.prototype.takeWhile = function (fun /*, thisp*/) {
var self = Iterator(this),
thisp = arguments[1];
if (Object.prototype.toString.call(fun) != "[object Function]")
throw new TypeError();
return self.map(function (value, i) {
if (!fun.call(thisp, value, i, self))
throw StopIteration;
return value;
});
};
Iterator.prototype.filter = function (fun /*, thisp*/) {
var self = Iterator(this),
thisp = arguments[1],
i = 0;
if (Object.prototype.toString.call(fun) != "[object Function]")
throw new TypeError();
return new self.constructor(function () {
var value;
while (true) {
value = self.next();
if (fun.call(thisp, value, i++, self))
return value;
}
});
};
Iterator.prototype.zip = function () {
return Iterator.transpose(
Array.prototype.concat.apply(this, arguments)
);
};
Iterator.prototype.enumerate = function (start, key, value) {
var enumeration = Iterator.count(start).zip(this);
if (arguments.length > 1) {
enumeration = enumeration.map(function (pair) {
pair[key] = pair[0];
pair[value] = pair[1];
return pair;
});
}
return enumeration;
};
// coerces arrays to iterators
// iterators to self
Iterator.iterate = function (array) {
var start;
array = Object(array);
if (array.next)
return array;
start = 0;
return new Iterator(function () {
// advance to next owned entry
while (!(start in array)) {
// deliberately late bound
if (start >= array.length)
throw StopIteration;
start += 1;
}
var result = array[start];
start += 1;
return result;
});
};
Iterator.cycle = function (cycle, times) {
if (arguments.length < 2)
times = Infinity;
//cycle = Iterator(cycle).toArray();
var next = function () {
throw StopIteration;
};
return new Iterator(function () {
var iteration;
try {
return next();
} catch (exception) {
if (isStopIteration(exception)) {
if (times <= 0)
throw exception;
times--;
iteration = Iterator.iterate(cycle);
next = iteration.next.bind(iteration);
return next();
} else {
throw exception;
}
}
});
};
Iterator.concat = function (iterators) {
iterators = Iterator(iterators);
var next = function () {
throw StopIteration;
};
return new Iterator(function (){
var iteration;
try {
return next();
} catch (exception) {
if (isStopIteration(exception)) {
iteration = iterators.next();
next = iteration.next.bind(iteration);
return next();
} else {
throw exception;
}
}
});
};
Iterator.transpose = function (iterators) {
iterators = Iterator(iterators).map(Iterator).toArray();
if (iterators.length < 1)
return new Iterator([]);
return new Iterator(function () {
var stopped;
var result = iterators.map(function (iterator) {
try {
return iterator.next();
} catch (exception) {
if (isStopIteration(exception)) {
stopped = true;
} else {
throw exception;
}
}
});
if (stopped) {
throw StopIteration;
}
return result;
});
};
Iterator.zip = function () {
return Iterator.transpose(
Array.prototype.slice.call(arguments)
);
};
Iterator.chain = function () {
return Iterator.concat(
Array.prototype.slice.call(arguments)
);
};
Iterator.range = function (start, stop, step) {
if (arguments.length < 3)
step = 1;
if (arguments.length < 2) {
stop = start;
start = 0;
}
start = start || 0;
return new Iterator(function () {
if (start >= stop)
throw StopIteration;
if (isNaN(start))
throw '';
var result = start;
start += step;
return result;
});
};
Iterator.count = function (start, step) {
step = step || 1;
return Iterator.range(start, Infinity, step);
};
Iterator.repeat = function (value, times) {
if (arguments.length < 2)
times = Infinity;
times = +times;
return new Iterator.range(times).map(function () {
return value;
});
};
// shim isStopIteration
if (typeof isStopIteration == "undefined") {
global.isStopIteration = function (exception) {
return Object.prototype.toString.call(exception)
=== "[object StopIteration]";
};
}
// shim StopIteration
if (typeof StopIteration == "undefined") {
global.StopIteration = {};
Object.prototype.toString = (function (toString) {
return function () {
if (
this === global.StopIteration ||
this instanceof global.ReturnValue
)
return "[object StopIteration]";
else
return toString.call(this, arguments);
};
})(Object.prototype.toString);
}
// shim ReturnValue
if (typeof ReturnValue == "undefined") {
global.ReturnValue = function (value) {
if (!(this instanceof global.ReturnValue))
return new global.ReturnValue(value);
this.value = value;
};
}
function Generator(generator, key, value) {
return function () {
return new Iterator(generator.call(this, key, value));
};
}
if (typeof exports !== "undefined") {
exports.Iterator = Iterator;
exports.Generator = Generator;
}