-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbase.go
246 lines (207 loc) · 5.36 KB
/
base.go
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
package jsarrayext
import (
"reflect"
"sort"
)
func concat(slices ...interface{}) interface{} {
newSliceLen := 0
for _, v := range slices {
newSliceLen += reflect.ValueOf(v).Len()
}
newSlice := make([]interface{}, newSliceLen)
index := 0
for _, slice := range slices {
sliceValue := reflect.ValueOf(slice)
sliceLen := sliceValue.Len()
for i := 0; i < sliceLen; i++ {
newSlice[index] = sliceValue.Index(i).Interface()
index++
}
}
return newSlice
}
func every(
slice interface{},
fn func(element interface{}, index int) bool,
) bool {
for index := 0; index < reflect.ValueOf(slice).Len(); index++ {
element := reflect.ValueOf(slice).Index(index).Interface()
if fn(element, index) == false {
return false
}
}
return true
}
func fill(
slice interface{},
value interface{},
start int,
end int,
) interface{} {
val := func() reflect.Value {
if value == nil {
return reflect.Zero(reflect.TypeOf((*interface{})(nil)).Elem())
}
return reflect.ValueOf(value)
}()
for index := start; index < end; index++ {
reflect.ValueOf(slice).Index(index).Set(val)
}
return slice
}
func filter(
slice interface{},
fn func(element interface{}, index int) bool,
) interface{} {
filtered := reflect.MakeSlice(reflect.TypeOf(slice), 0, reflect.ValueOf(slice).Len())
forEach(slice, func(element interface{}, index int) {
if fn(element, index) == true {
if element == nil {
// reflect.Append(filtered, nil) won't work.
// Instead create a zero value of the type and append it.
// See also https://groups.google.com/forum/#!topic/golang-nuts/Txje1_UfaMQ
filtered = reflect.Append(filtered, reflect.Zero(reflect.TypeOf(slice).Elem()))
} else {
filtered = reflect.Append(filtered, reflect.ValueOf(element))
}
}
})
return filtered.Interface()
}
func find(
slice interface{},
fn func(element interface{}, index int) bool,
) interface{} {
if index := findIndex(slice, fn); index != -1 {
element := reflect.ValueOf(slice).Index(index).Interface()
return element
}
return nil
}
func findIndex(
slice interface{},
fn func(element interface{}, index int) bool,
) int {
for index := 0; index < reflect.ValueOf(slice).Len(); index++ {
element := reflect.ValueOf(slice).Index(index).Interface()
if fn(element, index) == true {
return index
}
}
return -1
}
func forEach(
slice interface{},
fn func(element interface{}, index int),
) {
for index := 0; index < reflect.ValueOf(slice).Len(); index++ {
element := reflect.ValueOf(slice).Index(index).Interface()
fn(element, index)
}
}
func includes(
slice interface{},
value interface{},
) bool {
return some(slice, func(element interface{}, index int) bool {
return reflect.DeepEqual(element, value)
})
}
func indexOf(
slice interface{},
value interface{},
) int {
return findIndex(slice, func(element interface{}, index int) bool {
return reflect.DeepEqual(element, value)
})
}
func lastIndexOf(
slice interface{},
value interface{},
) int {
sliceValue := reflect.ValueOf(slice)
len := sliceValue.Len()
for index := len - 1; index >= 0; index-- {
element := sliceValue.Index(index).Interface()
if reflect.DeepEqual(element, value) {
return index
}
}
return -1
}
func mapToInterfaceSlice(
slice interface{},
fn func(element interface{}, index int) interface{},
) []interface{} {
mapped := make([]interface{}, reflect.ValueOf(slice).Len())
for index := 0; index < reflect.ValueOf(slice).Len(); index++ {
element := reflect.ValueOf(slice).Index(index).Interface()
mapped[index] = fn(element, index)
}
return mapped
}
func reduce(
slice interface{},
fn func(previousValue interface{}, currentValue interface{}, currentIndex int) interface{},
initialValue interface{},
) interface{} {
previousValue := initialValue
sliceValue := reflect.ValueOf(slice)
sliceLen := sliceValue.Len()
for index := 0; index < sliceLen; index++ {
currentValue := sliceValue.Index(index).Interface()
previousValue = fn(previousValue, currentValue, index)
}
return previousValue
}
func reduceRight(
slice interface{},
fn func(previousValue interface{}, currentValue interface{}, currentIndex int) interface{},
initialValue interface{},
) interface{} {
previousValue := initialValue
sliceValue := reflect.ValueOf(slice)
sliceLen := sliceValue.Len()
for index := sliceLen - 1; index >= 0; index-- {
currentValue := sliceValue.Index(index).Interface()
previousValue = fn(previousValue, currentValue, index)
}
return previousValue
}
func reverse(
slice interface{},
) interface{} {
sliceLen := reflect.ValueOf(slice).Len()
swapper := reflect.Swapper(slice)
for index := 0; index < (sliceLen / 2); index++ {
reversedIndex := sliceLen - index - 1
if index != reversedIndex {
swapper(index, reversedIndex)
}
}
return slice
}
func some(
slice interface{},
fn func(element interface{}, index int) bool,
) bool {
for index := 0; index < reflect.ValueOf(slice).Len(); index++ {
element := reflect.ValueOf(slice).Index(index).Interface()
if fn(element, index) == true {
return true
}
}
return false
}
func sortSlice(
slice interface{},
fn func(firstElement interface{}, secondElement interface{}) int,
) interface{} {
sliceValue := reflect.ValueOf(slice)
sort.Slice(slice, func(i, j int) bool {
firstElement := sliceValue.Index(i).Interface()
secondElement := sliceValue.Index(j).Interface()
return fn(firstElement, secondElement) < 0
})
return slice
}