@@ -16,25 +16,25 @@ package next
16
16
private [next] final class NextIterableOnceOpsExtensions [A , CC [_], C ](
17
17
private val col : IterableOnceOps [A , CC , C ]
18
18
) extends AnyVal {
19
- import NextIterableOnceOpsExtensions .{GroupMapGen , GroupMapGenGen }
19
+ import NextIterableOnceOpsExtensions .{GropMapToView , GroupMapView }
20
20
21
- def groupBy [K ](key : A => K )(implicit valuesFactory : Factory [A , C ]): immutable.Map [K , C ] =
22
- groupByGen (key).result
21
+ def groupBy [K ](key : A => K )(implicit groupsFactory : Factory [A , C ]): immutable.Map [K , C ] =
22
+ viewGroupByTo (key).toMap
23
23
24
- def groupByGen [K ](key : A => K )(implicit valuesFactory : Factory [A , C ]): GroupMapGen [A , K , A , C ] =
25
- groupByGenGen (key).collectValuesAs(valuesFactory )
24
+ def viewGroupByTo [K ](key : A => K )(implicit groupsFactory : Factory [A , C ]): GropMapToView [A , K , A , C ] =
25
+ viewGroupBy (key).collectValuesTo(groupsFactory )
26
26
27
- def groupByGenGen [K ](key : A => K ): GroupMapGenGen [A , K , A ] =
28
- groupMapGenGen (key)(identity)
27
+ def viewGroupBy [K ](key : A => K ): GroupMapView [A , K , A ] =
28
+ viewGroupMap (key)(identity)
29
29
30
- def groupMap [K , V ](key : A => K )(f : A => V )(implicit valuesFactory : Factory [V , CC [V ]]): immutable.Map [K , CC [V ]] =
31
- groupMapGen (key)(f).result
30
+ def groupMap [K , V ](key : A => K )(f : A => V )(implicit groupsFactory : Factory [V , CC [V ]]): immutable.Map [K , CC [V ]] =
31
+ viewGroupMapTo (key)(f).toMap
32
32
33
- def groupMapGen [K , V ](key : A => K )(f : A => V )(implicit valuesFactory : Factory [V , CC [V ]]): GroupMapGen [A , K , V , CC [V ]] =
34
- groupMapGenGen (key)(f).collectValuesAs(valuesFactory )
33
+ def viewGroupMapTo [K , V ](key : A => K )(f : A => V )(implicit groupsFactory : Factory [V , CC [V ]]): GropMapToView [A , K , V , CC [V ]] =
34
+ viewGroupMap (key)(f).collectValuesTo(groupsFactory )
35
35
36
- def groupMapGenGen [K , V ](key : A => K )(f : A => V ): GroupMapGenGen [A , K , V ] =
37
- new GroupMapGenGen (col, key, f)
36
+ def viewGroupMap [K , V ](key : A => K )(f : A => V ): GroupMapView [A , K , V ] =
37
+ new GroupMapView (col, key, f)
38
38
39
39
/**
40
40
* Partitions this IterableOnce into a map according to a discriminator function `key`. All the values that
@@ -49,19 +49,16 @@ private[next] final class NextIterableOnceOpsExtensions[A, CC[_], C](
49
49
* @note This will force the evaluation of the Iterator.
50
50
*/
51
51
def groupMapReduce [K , V ](key : A => K )(f : A => V )(reduce : (V , V ) => V ): immutable.Map [K , V ] =
52
- groupMapGenGen (key)(f).reduceValues (reduce)
52
+ viewGroupMap (key)(f).reduceValuesTo(immutable. Map ) (reduce)
53
53
}
54
54
55
55
private [next] object NextIterableOnceOpsExtensions {
56
- final class GroupMapGenGen [A , K , V ] private [NextIterableOnceOpsExtensions ](
56
+ final class GroupMapView [A , K , V ] private [NextIterableOnceOpsExtensions ](
57
57
col : IterableOnceOps [A , AnyConstr , _],
58
58
key : A => K ,
59
59
f : A => V
60
60
) {
61
- def reduceValues (reduce : (V , V ) => V ): immutable.Map [K , V ] =
62
- reduceValuesAs(immutable.Map )(reduce)
63
-
64
- def reduceValuesAs [MC ](resultFactory : Factory [(K , V ), MC ])(reduce : (V , V ) => V ): MC = {
61
+ def reduceValuesTo [MC ](resultFactory : Factory [(K , V ), MC ])(reduce : (V , V ) => V ): MC = {
65
62
val m = mutable.Map .empty[K , V ]
66
63
col.foreach { elem =>
67
64
m.updateWith(key = key(elem)) {
@@ -72,27 +69,27 @@ private[next] object NextIterableOnceOpsExtensions {
72
69
resultFactory.fromSpecific(m)
73
70
}
74
71
75
- def collectValuesAs [C ](valuesFactory : Factory [V , C ]): GroupMapGen [A , K , V , C ] =
76
- new GroupMapGen (col, key, f, valuesFactory )
72
+ def collectValuesTo [C ](groupsFactory : Factory [V , C ]): GropMapToView [A , K , V , C ] =
73
+ new GropMapToView (col, key, f, groupsFactory )
77
74
}
78
75
79
- final class GroupMapGen [A , K , V , C ] private [NextIterableOnceOpsExtensions ](
76
+ final class GropMapToView [A , K , V , C ] private [NextIterableOnceOpsExtensions ](
80
77
col : IterableOnceOps [A , AnyConstr , _],
81
78
key : A => K ,
82
79
f : A => V ,
83
- valuesFactory : Factory [V , C ]
80
+ groupsFactory : Factory [V , C ]
84
81
) {
85
- def result : immutable.Map [K , C ] =
86
- resultAs (immutable.Map )
82
+ def toMap : immutable.Map [K , C ] =
83
+ to (immutable.Map )
87
84
88
- def resultAs [MC ](resultFactory : Factory [(K , C ), MC ]): MC = {
85
+ def to [MC ](resultFactory : Factory [(K , C ), MC ]): MC = {
89
86
val m = mutable.Map .empty[K , mutable.Builder [V , C ]]
90
87
col.foreach { elem =>
91
88
val k = key(elem)
92
89
val v = f(elem)
93
90
m.get(k) match {
94
91
case Some (builder) => builder.addOne(v)
95
- case None => m.update(key = k, value = valuesFactory .newBuilder.addOne(v))
92
+ case None => m.update(key = k, value = groupsFactory .newBuilder.addOne(v))
96
93
}
97
94
}
98
95
resultFactory.fromSpecific(m.view.mapValues(_.result()))
0 commit comments