-
Notifications
You must be signed in to change notification settings - Fork 7
/
array_base.ahk
450 lines (314 loc) · 11.7 KB
/
array_base.ahk
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
/*
; To implement 'native' support, redefine Array() to add custom _Array base object
Array(prms*) {
; Since prms is already an array of the parameters, just give it a
; new base object and return it. Using this method, _Array.__New()
; is not called and any instance variables are not initialized.
prms.base := _Array
return prms
}
*/
; Define the base class.
class _Array {
; https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/concat
concat(arrays*) {
results := []
; First add the values from the instance being called on
for index, value in this
results.push(value)
; Second, add arrays given in parameter
for index, array in arrays
for index, element in array
results.push(element)
return results
}
; https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/every
every(callback) {
for index, element in this
if not callback.Call(element, index, this)
return false
return true
}
; https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/fill
fill(value, start:=0, end:=0) {
len := this.Length()
; START: Adjust 1 based index, check signage, set defaults
if (start > 0)
begin := start - 1 ; Include starting index going forward
else if (start < 0)
begin := len + start ; Count backwards from end
else
begin := start
; END: Check signage and set defaults
if (end > 0)
last := end
else if (end < 0)
last := len + end ; Count backwards from end
else
last := len
loop, % (last - begin)
this[begin + A_Index] := value
return this
}
; https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/filter
filter(callback) {
results := []
for index, element in this
if (callback.Call(element, index, this))
results.push(element)
return results
}
; https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/find
; Modified to return 0 instead of 'undefined'
find(callback) {
for index, element in this
if (callback.Call(element, index, this))
return element
return 0
}
; https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/findIndex
findIndex(callback) {
for index, value in this
if (callback.Call(value, index, this))
return index
return 0
}
; https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/forEach
forEach(callback) {
for index, element in this
callback.Call(element, index, this)
return 0
}
; https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/includes
includes(searchElement, fromIndex:=0) {
return this.indexOf(searchElement, fromIndex) > 0 ? true : false
}
; https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/indexOf
indexOf(searchElement, fromIndex:=0) {
len := this.Length()
if (fromIndex > 0)
start := fromIndex - 1 ; Include starting index going forward
else if (fromIndex < 0)
start := len + fromIndex ; Count backwards from end
else
start := fromIndex
loop, % len - start
if (this[start + A_Index] = searchElement)
return start + A_Index
return 0
}
; https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/join
join(delim) {
result := ""
for index, element in this
result .= element (index < this.Length() ? delim : "")
return result
}
; https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/lastIndexOf
; "if the provided index is negative, the array is still searched from front to back"
; - Are we not able to return the first found starting from the back?
lastIndexOf(searchElement, fromIndex:=0) {
len := this.Length()
foundIdx := -1
if (fromIndex > len)
return foundIdx
if (fromIndex > 0)
start := fromIndex - 1 ; Include starting index going forward
else if (fromIndex < 0)
start := len + fromIndex ; Count backwards from end
else
start := fromIndex
loop, % len - start
if (this[start + A_Index] = searchElement)
foundIdx := start + A_Index
return foundIdx
}
; https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/map
map(callback) {
results := []
for index, element in this
results.push(callback.Call(element, index, this))
return results
}
; https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/reduce
; -->[A,B,C,D,E,F]
reduce(callback, initialValue:="__NULL__") {
arrLen := this.Length()
; initialValue not defined
if (initialValue == "__NULL__") {
if (arrLen < 1) {
; Empty array with no intial value
return
}
else if (arrLen == 1) {
; Single item array with no initial value
return this[1]
}
; Starting value is last element
initialValue := this[1]
; Loop n-1 times (start at 2nd element)
iterations := arrLen - 1
; Set index A_Index+1 each iteration
idxOffset := 1
} else {
; initialValue defined
if (arrLen == 0) {
; Empty array with initial value
return initialValue
}
; Loop n times (starting at 1st element)
iterations := arrLen
; Set index A_Index each iteration
idxOffset := 0
}
; if no initialValue is passed, use first index as starting value and reduce
; array starting at index n+1. Otherwise, use initialValue as staring value
; and start at arrays first index.
Loop, % iterations
{
adjIndex := A_Index + idxOffset
initialValue := callback.Call(initialValue, this[adjIndex], adjIndex, this)
}
return initialValue
}
; https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/reduceRight
; [A,B,C,D,E,F]<--
reduceRight(callback, initialValue:="__NULL__") {
arrLen := this.Length()
; initialValue not defined
if (initialValue == "__NULL__") {
if (arrLen < 1) {
; Empty array with no intial value
return
}
else if (arrLen == 1) {
; Single item array with no initial value
return this[1]
}
; Starting value is last element
initialValue := this[arrLen]
; Loop n-1 times (starting at n-1 element)
iterations := arrLen - 1
; Set index A_Index-1 each iteration
idxOffset := 0
} else {
; initialValue defined
if (arrLen == 0)
; Empty array with initial value
return initialValue
; Loop n times (start at n element)
iterations := arrLen
; Set index A_Index each iteration
idxOffset := 1
}
; If no initialValue is passed, use last index as starting value and reduce
; array starting at index n-1. Otherwise, use initialValue as starting value
; and start at arrays last index.
Loop, % iterations
{
adjIndex := arrLen - (A_Index - idxOffset)
initialValue := callback.Call(initialValue, this[adjIndex], adjIndex, this)
}
return initialValue
}
; https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/reverse
reverse() {
arrLen := this.Length()
Loop, % (arrLen // 2)
{
idxFront := A_Index
idxBack := arrLen - (A_Index - 1)
tmp := this[idxFront]
this[idxFront] := this[idxBack]
this[idxBack] := tmp
}
return this
}
; https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/shift
shift() {
return this.RemoveAt(1)
}
; https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/slice
slice(start:=0, end:=0) {
len := this.Length()
; START: Adjust 1 based index, check signage, set defaults
if (start > 0)
begin := start - 1 ; Include starting index going forward
else if (start < 0)
begin := len + start ; Count backwards from end
else
begin := start
; END: Check signage and set defaults
; MDN States: "to end (end not included)" so subtract one from end
if (end > 0)
last := end - 1
else if (end < 0)
last := len + end + 1 ; Count backwards from end
else
last := len
results := []
loop, % last - begin
results.push(this[begin + A_Index])
return results
}
; https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/some
some(callback) {
for index, value in this
if callback.Call(value, index, this)
return true
return false
}
; https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort
sort(compare_fn:=0) {
; Quicksort
Array_QuickSort.Call(this, compare_fn)
return this
}
; https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/splice
splice(start, deleteCount:=-1, args*) {
arrLen := this.Length()
exiting := []
; Determine starting index
if (start > arrLen)
start := arrLen
if (start < 0)
start := arrLen + start
; deleteCount unspecified or out of bounds, set count to start through end
if ((deleteCount < 0) || (arrLen <= (start + deleteCount))) {
deleteCount := arrLen - start + 1
}
; Remove elements
Loop, % deleteCount
{
exiting.push(this[start])
this.RemoveAt(start)
}
; Inject elements
Loop, % args.Length()
{
curIndex := start + (A_Index - 1)
this.InsertAt(curIndex, args[1])
args.removeAt(1)
}
return exiting
}
; https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/toString
toString() {
str := "["
for i,v in this
str .= v (i < this.Length() ? ", " : "")
return str "]"
}
; https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/unshift
unshift(args*) {
for index, value in args
this.InsertAt(A_Index, value)
return this.Length()
}
; Simple swap
swap(index1, index2) {
tmp := this[index1]
this[index1] := this[index2]
this[index2] := tmp
}
}