-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathextracted.go
66 lines (55 loc) · 1.47 KB
/
extracted.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
package stream
import "github.com/todocoder/go-stream/collectors"
/*
Map stream 流 类型转换方法
eg:
res := Map(Of(
TestItem{itemNum: 1, itemValue: "item1"},
TestItem{itemNum: 2, itemValue: "item2"},
TestItem{itemNum: 3, itemValue: "item3"},
), func(item TestItem) ToTestItem {
return ToTestItem{
itemNum: item.itemNum,
itemValue: item.itemValue,
}
}).ToSlice()
fmt.Println(res)
*/
func Map[T any, R any](s Stream[T], mapper func(T) R) Stream[R] {
mapped := make([]R, 0)
for el := range s.source {
mapped = append(mapped, mapper(el))
}
return Of(mapped...)
}
func FlatMap[T any, R any](s Stream[T], mapper func(T) Stream[R]) Stream[R] {
streams := make([]Stream[R], 0)
s.ForEach(func(t T) {
streams = append(streams, mapper(t))
})
newEl := make([]R, 0)
for _, str := range streams {
newEl = append(newEl, str.ToSlice()...)
}
return Of(newEl...)
}
func GroupingBy[T any, K string | int | int32 | int64, R any](s Stream[T], keyMapper func(T) K, valueMapper func(T) R, opts ...OptFunc[R]) map[K][]R {
groups := make(map[K][]R)
s.ForEach(func(t T) {
key := keyMapper(t)
groups[key] = append(groups[key], valueMapper(t))
})
for _, vs := range groups {
for _, opt := range opts {
opt(vs)
}
}
return groups
}
func Collect[T any, A any, R any](s Stream[T], collector collectors.Collector[T, A, R]) R {
temp := collector.Supplier()()
for item := range s.source {
collector.Accumulator()(temp, item)
}
return collector.Finisher()(temp)
}