-
Notifications
You must be signed in to change notification settings - Fork 72
/
Copy pathclass_arrays.ahk
273 lines (248 loc) · 6.09 KB
/
class_arrays.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
; ahk: console
class Arrays {
requires() {
return [String]
}
#Include %A_LineFile%\..\modules\arrays\
#Include Venn.ahk
#Include Quicksort.ahk
__new() {
throw Exception("Instatiation of class '" this.__Class
. "' ist not allowed", -1)
}
equal(anArray, anArrayToCompareWith) {
Arrays.isArray(anArray)
Arrays.isArray(anArrayToCompareWith)
if (!(anArray.count() == anArrayToCompareWith.count())) {
return false
}
loop % anArray.count() {
if (!(anArray[A_Index] == anArrayToCompareWith[A_Index])) {
return false
}
}
return true
}
countOccurences(anArray, lookUpValue, caseSensitive=false) {
Arrays.isArray(anArray)
result := 0
loop % anArray.count() {
result += Arrays.areValuesEqual(anArray[A_Index], lookUpValue
, caseSensitive)
}
return result
}
areValuesEqual(aValue, anotherValue, caseSensitive) {
return (!caseSensitive && aValue = anotherValue)
|| (caseSensitive && aValue == anotherValue)
? 1 : 0
}
keys(anArray) {
Arrays.isArray(anArray)
result := []
for key in anArray {
result.push(key)
}
return result
}
values(anArray) {
Arrays.isArray(anArray)
result := []
for _, value in anArray {
result.push(value)
}
return result
}
distinct(anArray) {
Arrays.isArray(anArray)
distinctValuesInArray := []
for _, value in anArray {
if (!distinctValuesInArray.hasKey(value)) {
distinctValuesInArray[value] := true
}
}
return Arrays.keys(distinctValuesInArray)
}
removeValue(anArray, theValueToRemove, caseSensitive=false) {
Arrays.isArray(anArray)
result := 0
index := anArray.minIndex()
while (index <= anArray.maxIndex()) {
if (Arrays.areValuesEqual(anArray[index], theValueToRemove
, caseSensitive)) {
anArray.removeAt(index)
result++
} else {
index++
}
}
return result
}
shift(anArray, shiftByElements=1) {
Arrays.isArray(anArray)
if (shiftByElements < 1) {
numberOfShifts := 1
} else if (shiftByElements > anArray.maxIndex()) {
numberOfShifts := anArray.maxIndex()
} else {
numberOfShifts := shiftByElements
}
shiftedElements := []
loop %numberOfShifts% {
shiftedElements.push(anArray.removeAt(anArray.minIndex()))
}
if (shiftByElements != 1) {
return shiftedElements
}
return shiftedElements[1]
}
append(anArray, anotherArray) {
Arrays.isArray(anArray)
Arrays.isArray(anotherArray)
for _, value in anotherArray {
anArray.push(value)
}
return anArray.maxIndex()
}
wrap(anArray, textWidth, indentWithText="", indent1stElementWithText=""
, replace1stIndent=false) {
Arrays.isArray(anArray)
wrappedText := ""
index := anArray.minIndex()
while (index <= anArray.maxIndex()) {
if (A_Index = 1) {
wrappedElement := anArray[index++].wrap(textWidth
, indentWithText, indent1stElementWithText
, replace1stIndent)
} else {
wrappedElement := anArray[index++].wrap(textWidth
, indentWithText, "", false)
}
wrappedText .= wrappedElement "`n"
}
return wrappedText
}
toString(anArray, separateWithText=" ") {
Arrays.isArray(anArray)
if (!anArray.maxIndex()) {
return ""
}
index := anArray.minIndex()
result := ""
while (index <= anArray.maxIndex()) {
result .= Arrays.appendElementToString(result, separateWithText
, anArray[index++])
}
return result
}
appendElementToString(currentString, separateWithText, element) {
result := (currentString != "" ? separateWithText : "")
if (element.maxIndex() == "") {
result .= element
} else {
result .= Arrays.toString(element, separateWithText)
}
return result
}
index(anArray) {
indexOfArray := []
for key, value in anArray {
indexKey := value
indexValue := key
if (!indexOfArray.hasKey(indexKey)) {
indexOfArray[indexKey] := indexValue
} else {
previousValues := [indexOfArray[indexKey]]
previousValues.push(indexValue)
indexOfArray[indexKey] := previousValues
}
}
return indexOfArray
}
copyOf(anArray, newLength, padWith=0) {
copyOfArray := []
startIndex := anArray.minIndex()
endIndex := anArray.maxIndex()
index := startIndex
loop %newLength% {
copyOfArray[index] := (index <= endIndex ? anArray[index] : padWith)
index++
}
return copyOfArray
}
sort(anArray, compareFunc="") {
Arrays.isArray(anArray)
if (compareFunc == "") {
compareFunc := Arrays.Quicksort.compareStrings.bind(Arrays)
}
Arrays.isCallbackFunction(compareFunc)
return Arrays.Quicksort.sort(anArray, compareFunc
, anArray.minIndex(), anArray.maxIndex())
}
flatten(anArray, reset=true) {
static flatArray
Arrays.isArray(anArray)
if (reset) {
flatArray := []
}
index := anArray.minIndex()
loop {
if (anArray[index].minIndex() != "") {
Arrays.flatten(anArray[index], false)
} else {
flatArray.push(anArray[index])
}
index++
} until (index > anArray.maxIndex())
return flatArray
}
map(anArray, callbackFunc) {
Arrays.isArray(anArray)
Arrays.isCallbackFunction(callbackFunc)
result := []
for _, currentValue in anArray {
if (!IsObject(currentValue)) {
currentValue := {1: currentValue}
}
result.push(callbackFunc.call(currentValue))
}
return result
}
reduce(anArray, callbackFunc, initialValue) {
Arrays.isArray(anArray)
Arrays.isCallbackFunction(callbackFunc)
result := initialValue
for _, currentValue in anArray {
result := callbackFunc.call(result, currentValue)
}
return result
}
forEach(anArray, callbackFunc) {
Arrays.isArray(anArray)
Arrays.isCallbackFunction(callbackFunc)
for _, currentValue in anArray {
callbackFunc.call(currentValue, A_Index, anArray)
}
}
filter(anArray, callbackFunc) {
Arrays.isArray(anArray)
Arrays.isCallbackFunction(callbackFunc)
result := []
for _, currentValue in anArray {
if (callbackFunc.call(currentValue, A_Index, anArray)) {
result.push(currentValue)
}
}
return result
}
isArray(anArray) {
if (anArray.count() == "") {
throw Exception("Argument has to be an array")
}
}
isCallbackFunction(callbackFunc) {
if (!IsFunc(callbackFunc) && !IsObject(callbackFunc)) {
throw Exception("Callback function not found " callbackFunc)
}
}
}