-
-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathindex.js
More file actions
292 lines (253 loc) · 5.9 KB
/
index.js
File metadata and controls
292 lines (253 loc) · 5.9 KB
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
/* eslint-disable no-param-reassign */
/* eslint-disable no-restricted-syntax */
class List {
constructor(fnGenerator, start = 0, end = Infinity) {
this.fnGenerator = fnGenerator;
this.generator = fnGenerator();
this.start = start;
this.end = end;
this[Symbol.iterator] = this.entries;
}
static get empty() {
return List.fromList([]);
}
static fromList(data) {
function* listFn() {
yield* data;
}
return new List(listFn);
}
static repeat(value) {
function* repeaterFn() {
while (true) {
yield value;
}
}
return new List(repeaterFn);
}
static iterate(fn, start) {
function* iteratorFn() {
let current = start;
while (true) {
yield current;
current = fn(current);
}
}
return new List(iteratorFn);
}
static cycle(list) {
function* cyclerFn() {
while (true) {
list.generator = list.fnGenerator();
yield* list.generator;
}
}
return new List(cyclerFn);
}
static replicate(count, value) {
return List.repeat(value).take(count);
}
static get FIB() {
function* fibGenerator() {
let prevValue = 0;
let currentValue = 1;
yield prevValue;
yield currentValue;
while (true) {
[prevValue, currentValue] = [currentValue, currentValue + prevValue];
yield currentValue;
}
}
return new List(fibGenerator);
}
take(count) {
return new List(this.fnGenerator, 0, count);
}
head() {
return this.generator.next().value;
}
tail() {
return new List(this.fnGenerator, this.start + 1, this.end);
}
init() {
return new List(this.fnGenerator, this.start, this.end - 1);
}
get(index) {
let count = 0;
const generator = this.entries();
for (const value of generator) {
if (count === index) return value;
count += 1;
}
return undefined;
}
length() {
let count = 0;
const generator = this.entries();
while (!generator.next().done) {
count += 1;
}
return count;
}
drop(count) {
return new List(this.fnGenerator, count, this.end);
}
nil() {
return this.entries().next().done;
}
map(mapFn) {
function* mapGenerator() {
for (const value of this) {
yield mapFn(value);
}
}
return new List(mapGenerator.bind(this), this.start, this.end);
}
filter(predicate) {
function* filterGenerator() {
for (const value of this) {
if (predicate(value)) yield value;
}
}
return new List(filterGenerator.bind(this), this.start, this.end);
}
reverse() {
return List.fromList(this.toList().reverse());
}
concat() {
function* concatGenerator() {
for (const list of this) {
yield* list.entries();
}
}
return new List(concatGenerator.bind(this), this.start, this.end);
}
zipWith(zipFn, list) {
function* zipGenerator() {
const leftGenerator = this.fnGenerator();
const rightGenerator = list.fnGenerator();
while (true) {
const leftValue = leftGenerator.next();
if (leftValue.done) break;
const rightValue = rightGenerator.next();
if (rightValue.done) break;
yield zipFn(leftValue.value, rightValue.value);
}
}
return new List(zipGenerator.bind(this), this.start, this.end);
}
foldl(foldFn, initialValue) {
let result = initialValue;
for (const value of this) {
result = foldFn(result, value);
}
return result;
}
find(predicate) {
for (const value of this) {
if (predicate(value)) return value;
}
return undefined;
}
findIndex(predicate) {
let index = 0;
for (const value of this) {
if (predicate(value)) return index;
index += 1;
}
return -1;
}
any(predicate) {
const foundIndex = this.findIndex(predicate);
return foundIndex !== -1;
}
all(predicate) {
for (const value of this) {
if (!predicate(value)) return false;
}
return true;
}
the() {
let hasDefaultValue = false;
let defaultValue;
for (const value of this) {
if (!hasDefaultValue) {
defaultValue = value;
hasDefaultValue = true;
} else if (value !== defaultValue) return undefined;
}
return defaultValue;
}
elem(findValue) {
for (const value of this) {
if (value === findValue) return true;
}
return false;
}
elemIndex(element) {
let index = 0;
for (const value of this) {
if (value === element) return index;
index += 1;
}
return -1;
}
cons(value) {
function* listFn() {
yield value;
yield* this;
}
return new List(listFn.bind(this), this.start, this.end);
}
append(list) {
function* listFn() {
yield* list.entries();
yield* this;
}
return new List(listFn.bind(this));
}
slice(start, end) {
return new List(this.fnGenerator, start, end);
}
foldr(reducer, accumulator) {
const values = this.toList();
for (let i = values.length - 1; i >= 0; i -= 1) {
accumulator = reducer(values[i], accumulator);
}
return accumulator;
}
last() {
const values = this.toList();
return values.pop();
}
scanl(scanFn, accumulator) {
function* scanLGenerator() {
yield accumulator;
for (const value of this) {
accumulator = scanFn(accumulator, value);
yield accumulator;
}
}
return new List(scanLGenerator.bind(this), this.start, this.end);
}
scanr(scanFn, accumulator) {
return this.reverse().scanl(scanFn, accumulator).reverse();
}
* entries() {
let index = 0;
const generator = this.fnGenerator();
for (const value of generator) {
if (index >= this.start && index < this.end) {
yield value;
}
if (index >= this.end) {
break;
}
index += 1;
}
}
toList() {
return [...this];
}
}
module.exports = List;