-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathslice_utils.go
39 lines (35 loc) · 999 Bytes
/
slice_utils.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
package utils
// SlicePointersToValues takes a slice of pointers and returns a slice of values de-referenced from them.
func SlicePointersToValues[T any](x []*T) []T {
r := make([]T, len(x))
for i := 0; i < len(x); i++ {
r[i] = *x[i]
}
return r
}
// SliceValuesToPointers takes a slice of values and returns a slice of pointers to them.
func SliceValuesToPointers[T any](x []T) []*T {
r := make([]*T, len(x))
for i := 0; i < len(x); i++ {
r[i] = &x[i]
}
return r
}
// SliceSelect provides a way of querying a specific element from a slice's elements into a slice of its own.
func SliceSelect[T any, K any](x []T, f func(x T) K) []K {
r := make([]K, len(x))
for i := 0; i < len(x); i++ {
r[i] = f(x[i])
}
return r
}
// SliceWhere provides a way of querying specific elements which fit some criteria into a new slice.
func SliceWhere[T any](x []T, f func(x T) bool) []T {
r := make([]T, 0)
for i := 0; i < len(x); i++ {
if f(x[i]) {
r = append(r, x[i])
}
}
return r
}