-
Notifications
You must be signed in to change notification settings - Fork 6
/
iterable.ts
483 lines (444 loc) · 9.91 KB
/
iterable.ts
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
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
/**
* This file contains the Iterable algebraic data type. Iterable is a lazy,
* synchronous, and native structure defined by ecmascript. Generally, one
* interacts with the Iterator structure directly, but the Iterable type, being
* more generic, is a better target for functional. Any data structure that
* implements Iterable (ie. Array, Map, Set, etc) can use the iterable methods
* contained here if neeeded.
*
* Something to keep in mind here is that Iterables can have nasty edge cases
* that don't exist for non-lazy data structures. Specifically, an iterable can
* generate a theoretically infinite number of values, making the draining of an
* iterable potentially impossible (trying it will cause the runtime to hang).
* Additionally, many iterables are constructed using generators, which cannot
* be easily cloned. This makes the process of chaining iterables a resource
* intensive operation. As always, use these combinators with care.
*
* @module Iterable
* @since 2.0.0
*/
import type { Kind, Out } from "./kind.ts";
import type { Applicable } from "./applicable.ts";
import type { Combinable } from "./combinable.ts";
import type { Either } from "./either.ts";
import type { Filterable } from "./filterable.ts";
import type { Bind, Flatmappable, Tap } from "./flatmappable.ts";
import type { Foldable } from "./foldable.ts";
import type { Initializable } from "./initializable.ts";
import type { BindTo, Mappable } from "./mappable.ts";
import type { Option } from "./option.ts";
import type { Pair } from "./pair.ts";
import type { Predicate } from "./predicate.ts";
import type { Refinement } from "./refinement.ts";
import type { Showable } from "./showable.ts";
import type { Wrappable } from "./wrappable.ts";
import { isSome } from "./option.ts";
import { isLeft, isRight } from "./either.ts";
import { createBind, createTap } from "./flatmappable.ts";
import { createBindTo } from "./mappable.ts";
import { pipe } from "./fn.ts";
import { not } from "./predicate.ts";
/**
* @since 2.0.0
*/
export interface KindIterable extends Kind {
readonly kind: Iterable<Out<this, 0>>;
}
/**
* @since 2.0.0
*/
export function iterable<A>(
fa: () => Iterator<A>,
): Iterable<A> {
return { [Symbol.iterator]: fa };
}
/**
* @since 2.0.0
*/
export function clone<A>(ta: Iterable<A>): Iterable<A> {
const cache: IteratorResult<A>[] = [];
let _iterator: Iterator<A>;
return iterable(function* () {
if (_iterator === undefined) {
_iterator = ta[Symbol.iterator]();
}
let index = 0;
while (true) {
if (index === cache.length) {
cache.push(_iterator.next());
} else {
const { value, done } = cache[index++];
if (done) {
break;
}
yield value;
}
}
});
}
/**
* @since 2.0.0
*/
export function range(
count: number = Number.POSITIVE_INFINITY,
start = 0,
step = 1,
): Iterable<number> {
return iterable(function* () {
let index = Math.floor(count);
let value = start;
while (index > 0) {
yield value;
index--;
value += step;
}
});
}
/**
* @since 2.0.0
*/
export function wrap<A>(...a: A[]): Iterable<A> {
return iterable(function* () {
let index = -1;
const length = a.length;
while (++index < length) {
yield a[index];
}
});
}
/**
* @since 2.0.0
*/
export function apply<A>(
ua: Iterable<A>,
): <I>(ufai: Iterable<(a: A) => I>) => Iterable<I> {
return (ufai) =>
iterable(function* () {
for (const fai of ufai) {
for (const a of ua) {
yield fai(a);
}
}
});
}
/**
* @since 2.0.0
*/
export function map<A, I>(fai: (a: A) => I): (ta: Iterable<A>) => Iterable<I> {
return (ta) =>
iterable(function* () {
for (const a of ta) {
yield fai(a);
}
});
}
/**
* @since 2.0.0
*/
export function flatmap<A, I>(
fati: (a: A) => Iterable<I>,
): (ta: Iterable<A>) => Iterable<I> {
return (ta) =>
iterable(function* () {
for (const a of ta) {
for (const i of fati(a)) {
yield i;
}
}
});
}
/**
* @since 2.0.0
*/
export function forEach<A>(fa: (a: A) => void): (ta: Iterable<A>) => void {
return (ta) => {
for (const a of ta) {
fa(a);
}
};
}
/**
* @since 2.0.0
*/
export function fold<A, O>(
foldr: (accumulator: O, value: A) => O,
initial: O,
): (ua: Iterable<A>) => O {
return (ua) => {
let out = initial;
for (const a of ua) {
out = foldr(out, a);
}
return out;
};
}
/**
* @since 2.0.0
*/
export function scan<A, O>(
foldr: (accumulator: O, value: A, index: number) => O,
initial: O,
): (ta: Iterable<A>) => Iterable<O> {
return (ta) =>
iterable(function* () {
let result = initial;
let index = 0;
for (const a of ta) {
result = foldr(result, a, index++);
yield result;
}
});
}
/**
* @since 2.0.0
*/
export function filter<A, B extends A>(
refinement: Refinement<A, B>,
): (ua: Iterable<A>) => Iterable<B>;
export function filter<A>(
predicate: Predicate<A>,
): (ua: Iterable<A>) => Iterable<A>;
export function filter<A>(
predicate: Predicate<A>,
): (ta: Iterable<A>) => Iterable<A> {
return (ta) =>
iterable(function* () {
for (const a of ta) {
if (predicate(a)) {
yield a;
}
}
});
}
/**
* @since 2.0.0
*/
export function filterMap<A, I>(
predicate: (a: A) => Option<I>,
): (ua: Iterable<A>) => Iterable<I> {
return (ua) =>
iterable(
function* filterMap() {
for (const a of ua) {
const result = predicate(a);
if (isSome(result)) {
yield result.value;
}
}
},
);
}
/**
* @since 2.0.0
*/
export function partition<A, B extends A>(
refinement: (a: A) => a is B,
): (ua: Iterable<A>) => Pair<Iterable<A>, Iterable<B>>;
export function partition<A>(
predicate: (a: A) => boolean,
): (ua: Iterable<A>) => Pair<Iterable<A>, Iterable<A>>;
export function partition<A>(
predicate: (a: A) => boolean,
): (ua: Iterable<A>) => Pair<Iterable<A>, Iterable<A>> {
return (ua) => {
const cloned = clone(ua);
return [
pipe(cloned, filter(predicate)),
pipe(cloned, filter(not(predicate))),
];
};
}
/**
* @since 2.0.0
*/
export function partitionMap<A, I, J>(
predicate: (a: A) => Either<J, I>,
): (ua: Iterable<A>) => Pair<Iterable<I>, Iterable<J>> {
return (ua) => {
const cloned = clone(ua);
return [
iterable(function* partitionFirst() {
for (const a of cloned) {
const result = predicate(a);
if (isRight(result)) {
yield result.right;
}
}
}),
iterable(function* partitionSecond() {
for (const a of cloned) {
const result = predicate(a);
if (isLeft(result)) {
yield result.left;
}
}
}),
];
};
}
/**
* Collect all values of an iterable into an array. WARNING: If the iterable is
* infinite then this will cause the program to hang indefinitely.
*
* @since 2.0.0
*/
export function collect<A>(
ta: Iterable<A>,
): ReadonlyArray<A> {
const result = new Array<A>();
for (const a of ta) {
result.push(a);
}
return result;
}
/**
* @since 2.0.0
*/
export function take(n: number): <A>(ta: Iterable<A>) => Iterable<A> {
return <A>(ta: Iterable<A>) =>
iterable(function* () {
let count = Math.floor(n);
for (const a of ta) {
if (count-- <= 0) {
return;
}
yield a;
}
});
}
/**
* @since 2.0.0
*/
export function takeUntil<A>(
predicate: Predicate<A>,
): (ta: Iterable<A>) => Iterable<A> {
return (ta) =>
iterable(function* () {
for (const a of ta) {
if (predicate(a)) {
return;
}
yield a;
}
});
}
/**
* @since 2.0.0
*/
export function takeWhile<A>(
predicate: Predicate<A>,
): (ta: Iterable<A>) => Iterable<A> {
return takeUntil((a) => !predicate(a));
}
/**
* @since 2.0.0
*/
export function repeat(
n: number,
): <A>(ta: Iterable<A>) => Iterable<A> {
return <A>(ta: Iterable<A>) =>
iterable(function* () {
let index = n;
while (index-- > 0) {
for (const a of ta) {
yield a;
}
}
});
}
/**
* @since 2.0.0
*/
export function init<A>(): Iterable<A> {
return iterable(function* () {});
}
/**
* @since 2.0.0
*/
export function combine<A>(
second: Iterable<A>,
): (first: Iterable<A>) => Iterable<A> {
return (first) =>
iterable(function* () {
for (const fst of first) {
yield fst;
}
for (const snd of second) {
yield snd;
}
});
}
/**
* @since 2.0.0
*/
export function getCombinable<A>(): Combinable<Iterable<A>> {
return { combine };
}
/**
* @since 2.0.0
*/
export function getInitializable<A>(): Initializable<Iterable<A>> {
return { init, combine };
}
/**
* @since 2.0.0
*/
export function getShowable<A>(S: Showable<A>): Showable<Iterable<A>> {
return {
show: (ua) => `Iterable[${Array.from(ua).map(S.show).join(", ")}]`,
};
}
/**
* @since 2.0.0
*/
export const ApplicableIterable: Applicable<KindIterable> = {
apply,
map,
wrap,
};
/**
* @since 2.0.0
*/
export const FlatmappableIterable: Flatmappable<KindIterable> = {
apply,
flatmap,
map,
wrap,
};
/**
* @since 2.0.0
*/
export const FilterableIterable: Filterable<KindIterable> = {
filter,
filterMap,
partition,
partitionMap,
};
/**
* @since 2.0.0
*/
export const FoldableIterable: Foldable<KindIterable> = { fold };
/**
* @since 2.0.0
*/
export const MappableIterable: Mappable<KindIterable> = {
map,
};
/**
* @since 2.0.0
*/
export const WrappableIterable: Wrappable<KindIterable> = {
wrap,
};
/**
* @since 2.0.0
*/
export const tap: Tap<KindIterable> = createTap(FlatmappableIterable);
/**
* @since 2.0.0
*/
export const bind: Bind<KindIterable> = createBind(FlatmappableIterable);
/**
* @since 2.0.0
*/
export const bindTo: BindTo<KindIterable> = createBindTo(FlatmappableIterable);