-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathslices.go
416 lines (379 loc) · 8.88 KB
/
slices.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
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
// Tideland Go Slices
//
// Copyright (C) 2022-2023 Frank Mueller / Tideland / Oldenburg / Germany
//
// All rights reserved. Use of this source code is governed
// by the new BSD license.
package slices // import "tideland.dev/go/slices"
//--------------------
// IMPORTS
//--------------------
import (
"golang.org/x/exp/constraints"
)
//--------------------
// SLICES
//--------------------
// Append appends the values of all slices to one new slice.
func Append[V any](ivss ...[]V) []V {
var ovs []V
for _, vs := range ivss {
if vs != nil {
ovs = append(ovs, vs...)
}
}
return ovs
}
// ContainsAll returns true if the function pred() returns true for all
// values of the slice.
func ContainsAll[V any](ivs []V, pred func(v V) bool) bool {
for _, v := range ivs {
if !pred(v) {
return false
}
}
return true
}
// ContainsAny returns true if the function pred() returns true for at least
// one value of the slice.
func ContainsAny[V any](ivs []V, pred func(v V) bool) bool {
for _, v := range ivs {
if pred(v) {
return true
}
}
return false
}
// Copy is simply a convenient combination of allocation and copying.
func Copy[V any](ivs []V) []V {
if ivs == nil {
return nil
}
ovs := make([]V, len(ivs))
copy(ovs, ivs)
return ovs
}
// Delete removes the first matching value of a slice.
func Delete[V comparable](dv V, ivs []V) []V {
ovs := Copy(ivs)
for i := range ovs {
if ovs[i] == dv {
ovs = append(ovs[:i], ovs[i+1:]...)
return ovs
}
}
return ovs
}
// DeleteAll removes all matching valus of a slice.
func DeleteAll[V comparable](dv V, ivs []V) []V {
if ivs == nil {
return nil
}
ovs := []V{}
for _, v := range ivs {
if v != dv {
ovs = append(ovs, v)
}
}
return ovs
}
// DeleteAllWith removes all values of a slice where pred returns true.
func DeleteAllWith[V any](ivs []V, pred func(V) bool) []V {
_, nsvs := Partition(ivs, pred)
if nsvs == nil && ivs != nil {
return []V{}
}
return nsvs
}
// DeleteFirst removes the first value of a slice.
func DeleteFirst[V any](ivs []V) []V {
return Subslice(ivs, 1, len(ivs)-1)
}
// DeleteLast removes the last value of a slice.
func DeleteLast[V any](ivs []V) []V {
return Subslice(ivs, 0, len(ivs)-2)
}
// DeleteWhile removes all values as long pred() returns true.
func DeleteWhile[V any](ivs []V, pred func(V) bool) []V {
if ivs == nil {
return nil
}
dropped := -1
for i, v := range ivs {
if pred(v) {
dropped = i
continue
}
break
}
if dropped == len(ivs)-1 {
return nil
}
return Subslice(ivs, dropped+1, len(ivs)-1)
}
// DeleteWith removes the first value of a slice where pred returns true.
func DeleteWith[V any](ivs []V, pred func(V) bool) []V {
ovs := Copy(ivs)
for i := range ovs {
if pred(ovs[i]) {
ovs = append(ovs[:i], ovs[i+1:]...)
return ovs
}
}
return ovs
}
// Filter creates a slice from all values where pred() returns true.
func Filter[V any](ivs []V, pred func(V) bool) []V {
svs, _ := Partition(ivs, pred)
if svs == nil && ivs != nil {
return []V{}
}
return svs
}
// FilterMap creates a slice from of new values created by fun() where
// it also returns true.
func FilterMap[I, O any](ivs []I, fun func(I) (O, bool)) []O {
if ivs == nil {
return nil
}
ovs := []O{}
for _, iv := range ivs {
if ov, ok := fun(iv); ok {
ovs = append(ovs, ov)
}
}
return ovs
}
// IsEqual returns true if both slices are equal.
func IsEqual[V comparable](first, second []V) bool {
if len(first) != len(second) {
return false
}
for i, v := range first {
if v != second[i] {
return false
}
}
return true
}
// IsMember returns true if the slice contains the value v.
func IsMember[V comparable](v V, ivs []V) bool {
return ContainsAny(ivs, func(iv V) bool {
return iv == v
})
}
// IsPrefix returns true if the first slice is the prefix of the second one.
func IsPrefix[V comparable](prefix, all []V) bool {
if len(prefix) > len(all) {
return false
}
for i, v := range prefix {
if v != all[i] {
return false
}
}
return true
}
// IsSuffix returns true if the first slice is the suffix of the second one.
func IsSuffix[V comparable](suffix, all []V) bool {
if len(suffix) > len(all) {
return false
}
diff := len(all) - len(suffix)
for i, v := range suffix {
if v != all[i+diff] {
return false
}
}
return true
}
// Join create a slice mixing a separator between each value of the slice.
func Join[V any](sep V, ivs []V) []V {
if ivs == nil {
return nil
}
ovs := []V{}
last := len(ivs) - 1
for i, v := range ivs {
ovs = append(ovs, v)
if i < last {
ovs = append(ovs, sep)
}
}
return ovs
}
// Map creates a slice of output values from the input values and converted
// by the map function.
func Map[I, O any](ivs []I, fun func(I) O) []O {
if ivs == nil {
return nil
}
ovs := make([]O, len(ivs))
for i, iv := range ivs {
ovs[i] = fun(iv)
}
return ovs
}
// Merge merges two slices in a sorted way together.
func Merge[V constraints.Ordered](vsa, vsb []V) []V {
return Sort(Append(vsa, vsb))
}
// MergeWith merges two slices and uses a comparator function for sorting.
func MergeWith[V any, K constraints.Ordered](vsa, vsb []V, key func(V) K) []V {
less := func(vs []V, i, j int) bool {
ki := key(vs[i])
kj := key(vs[j])
return ki < kj
}
return SortWith(Append(vsa, vsb), less)
}
// Reverse returns the slice in reverse order.
func Reverse[V any](ivs []V) []V {
if ivs == nil {
return nil
}
l := len(ivs)
ovs := make([]V, l)
for i := range ivs {
l--
ovs[i] = ivs[l]
}
return ovs
}
// Split returns the first n values of a slice as first slice and the rest
// as second.
func Split[V any](n int, ivs []V) ([]V, []V) {
switch {
case ivs == nil:
return nil, nil
case n < 0:
return nil, Copy(ivs)
case n >= len(ivs):
return Copy(ivs), nil
}
return Subslice(ivs, 0, n), Subslice(ivs, n+1, len(ivs)-1)
}
// SplitWith returns the values while pred() returns true as first and the rest
// as second slice.
func SplitWith[V any](ivs []V, pred func(V) bool) ([]V, []V) {
if len(ivs) == 0 {
return nil, nil
}
n := -1
for _, v := range ivs {
if !pred(v) {
break
}
n++
}
return Split(n, ivs)
}
// Subslice returns the values of slices from fpos to tpos as a new slice.
// Negative fpos as well as too high tpos are allowed and will be limited.
// Starting behind the slice or end before 0 returns nil.
func Subslice[V any](ivs []V, fpos, tpos int) []V {
if ivs == nil || fpos > tpos {
return nil
}
if fpos < 0 {
fpos = 0
} else if fpos >= len(ivs) {
return nil
}
if tpos < 0 {
return nil
} else if tpos >= len(ivs) {
tpos = len(ivs) - 1
}
ovs := make([]V, tpos-fpos+1)
copy(ovs, ivs[fpos:tpos+1])
return ovs
}
// Subtract returns a new slice that is a copy of input slice, subjected to the following
// procedure: for each element in the subtract slice, its first occurrence in the input
// slice is deleted.
func Subtract[V comparable](ivs, svs []V) []V {
if ivs == nil || svs == nil {
return ivs
}
ovs := Copy(ivs)
for _, sv := range svs {
ovs = Delete(sv, ovs)
}
return ovs
}
// TakeWhile copies all values as long pred() returns true.
func TakeWhile[V any](ivs []V, pred func(V) bool) []V {
if ivs == nil {
return nil
}
taken := -1
for i, v := range ivs {
if pred(v) {
taken = i
continue
}
break
}
return Subslice(ivs, 0, taken)
}
// Unique returns a slice which contains each value only once. The second
// and further values are dropped.
func Unique[V comparable](ivs []V) []V {
if ivs == nil {
return nil
}
ovs := []V{}
isContained := map[V]struct{}{}
for _, v := range ivs {
if _, ok := isContained[v]; !ok {
ovs = append(ovs, v)
isContained[v] = struct{}{}
}
}
return ovs
}
// UniqueMerge merges two slices in a sorted way together. Duplicates are dropped.
func UniqueMerge[V constraints.Ordered](vsa, vsb []V) []V {
return Unique(Sort(Append(vsa, vsb)))
}
// UniqueMergeWith merges two slices and uses a key function to get a sortable key
// of the values. This could e.g. be a field of a struct. Duplicate key values are
// dropped.
func UniqueMergeWith[V any, K constraints.Ordered](vsa, vsb []V, key func(V) K) []V {
less := func(vs []V, i, j int) bool {
ki := key(vs[i])
kj := key(vs[j])
return ki < kj
}
return UniqueWith(SortWith(Append(vsa, vsb), less), key)
}
// UniqueWith returns a slice which contains each value return by the key function
// only once. The returned value could e.g. be a fiel of a struct.
func UniqueWith[V any, K comparable](ivs []V, key func(V) K) []V {
if ivs == nil {
return nil
}
ovs := []V{}
isContained := map[K]struct{}{}
for _, v := range ivs {
k := key(v)
if _, ok := isContained[k]; !ok {
ovs = append(ovs, v)
isContained[k] = struct{}{}
}
}
return ovs
}
// Search returns the first value that satisfies the given predicate.
func Search[V any](pred func(v V) bool, ivs []V) (V, bool) {
for _, v := range ivs {
if pred(v) {
return v, true
}
}
// Return default value and false.
var ov V
return ov, false
}
// EOF