Skip to content

Commit 1a19401

Browse files
committed
Applying naming suggestions
1 parent 301d839 commit 1a19401

File tree

2 files changed

+35
-38
lines changed

2 files changed

+35
-38
lines changed

src/main/scala/scala/collection/next/NextIterableOnceOpsExtensions.scala

+24-27
Original file line numberDiff line numberDiff line change
@@ -16,25 +16,25 @@ package next
1616
private[next] final class NextIterableOnceOpsExtensions[A, CC[_], C](
1717
private val col: IterableOnceOps[A, CC, C]
1818
) extends AnyVal {
19-
import NextIterableOnceOpsExtensions.{GroupMapGen, GroupMapGenGen}
19+
import NextIterableOnceOpsExtensions.{GropMapToView, GroupMapView}
2020

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
2323

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)
2626

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)
2929

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
3232

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)
3535

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)
3838

3939
/**
4040
* 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](
4949
* @note This will force the evaluation of the Iterator.
5050
*/
5151
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)
5353
}
5454

5555
private[next] object NextIterableOnceOpsExtensions {
56-
final class GroupMapGenGen[A, K, V] private[NextIterableOnceOpsExtensions](
56+
final class GroupMapView[A, K, V] private[NextIterableOnceOpsExtensions](
5757
col: IterableOnceOps[A, AnyConstr, _],
5858
key: A => K,
5959
f: A => V
6060
) {
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 = {
6562
val m = mutable.Map.empty[K, V]
6663
col.foreach { elem =>
6764
m.updateWith(key = key(elem)) {
@@ -72,27 +69,27 @@ private[next] object NextIterableOnceOpsExtensions {
7269
resultFactory.fromSpecific(m)
7370
}
7471

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)
7774
}
7875

79-
final class GroupMapGen[A, K, V, C] private[NextIterableOnceOpsExtensions](
76+
final class GropMapToView[A, K, V, C] private[NextIterableOnceOpsExtensions](
8077
col: IterableOnceOps[A, AnyConstr, _],
8178
key: A => K,
8279
f: A => V,
83-
valuesFactory: Factory[V, C]
80+
groupsFactory: Factory[V, C]
8481
) {
85-
def result: immutable.Map[K, C] =
86-
resultAs(immutable.Map)
82+
def toMap: immutable.Map[K, C] =
83+
to(immutable.Map)
8784

88-
def resultAs[MC](resultFactory: Factory[(K, C), MC]): MC = {
85+
def to[MC](resultFactory: Factory[(K, C), MC]): MC = {
8986
val m = mutable.Map.empty[K, mutable.Builder[V, C]]
9087
col.foreach { elem =>
9188
val k = key(elem)
9289
val v = f(elem)
9390
m.get(k) match {
9491
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))
9693
}
9794
}
9895
resultFactory.fromSpecific(m.view.mapValues(_.result()))

src/test/scala/scala/collection/next/TestIterableOnceExtensions.scala

+11-11
Original file line numberDiff line numberDiff line change
@@ -69,12 +69,12 @@ final class TestIterableOnceExtensions {
6969

7070
// GroupMapGenGen --------------------------------------------
7171
@Test
72-
def anyCollectionGroupMapGenResultAs(): Unit = {
72+
def anyCollectionGroupMapToViewTo(): Unit = {
7373
def getUniqueUsersByCountrySorted(data: List[Record]): List[(String, List[String])] =
7474
data
75-
.groupMapGenGen(_.country)(_.user)
76-
.collectValuesAs(SortedSet)
77-
.resultAs(SortedMap)
75+
.viewGroupMap(_.country)(_.user)
76+
.collectValuesTo(SortedSet)
77+
.to(SortedMap)
7878
.view
7979
.mapValues(_.toList)
8080
.toList
@@ -98,11 +98,11 @@ final class TestIterableOnceExtensions {
9898
}
9999

100100
@Test
101-
def anyCollectionGroupMapGenGenReduce(): Unit = {
101+
def anyCollectionGroupMapViewReduceValuesTo(): Unit = {
102102
def getAllWordsByFirstLetterSorted(data: List[String]): List[(Char, String)] =
103103
data
104-
.groupByGenGen(_.head)
105-
.reduceValuesAs(SortedMap)(_ ++ " " ++ _)
104+
.viewGroupBy(_.head)
105+
.reduceValuesTo(SortedMap)(_ ++ " " ++ _)
106106
.toList
107107

108108
val data = List(
@@ -125,9 +125,9 @@ final class TestIterableOnceExtensions {
125125
}
126126

127127
@Test
128-
def iterableOnceOpsGroupByGenSpecificFactory(): Unit = {
128+
def iterableOnceOpsViewGroupByToSpecificFactoryToMap(): Unit = {
129129
def bitsByEven(data: BitSet): Map[Boolean, BitSet] =
130-
data.groupByGen(x => (x % 2) == 0).result
130+
data.viewGroupByTo(x => (x % 2) == 0).toMap
131131

132132
val data = BitSet(1, 2, 3, 4, 5)
133133
val expected = Map(
@@ -139,9 +139,9 @@ final class TestIterableOnceExtensions {
139139
}
140140

141141
@Test
142-
def iterableOnceOpsGroupMapGenIterableFactory(): Unit = {
142+
def iterableOnceOpsViewGroupMapToIterableFactoryToMap(): Unit = {
143143
def bitsByEvenAsChars(data: BitSet): Map[Boolean, Set[Char]] =
144-
data.groupMapGen(x => (x % 2) == 0)(_.toChar).result
144+
data.viewGroupMapTo(x => (x % 2) == 0)(_.toChar).toMap
145145

146146
val data = BitSet(100, 101, 102, 103, 104, 105)
147147
val expected = Map(

0 commit comments

Comments
 (0)