@@ -992,7 +992,7 @@ trait EvidenceIterableFactoryDefaults[+A, +CC[x] <: IterableOps[x, CC, CC[x]], E
992
992
trait SortedSetFactoryDefaults [+ A ,
993
993
+ CC [X ] <: SortedSet [X ] with SortedSetOps [X , CC , CC [X ]],
994
994
+ WithFilterCC [x] <: IterableOps [x, WithFilterCC , WithFilterCC [x]] with Set [x]] extends SortedSetOps [A @ uncheckedVariance, CC , CC [A @ uncheckedVariance]] {
995
- self : IterableOps [A , WithFilterCC , _ ] =>
995
+ self : IterableOps [A , WithFilterCC , CC [ A @ uncheckedVariance] ] =>
996
996
997
997
override protected def fromSpecific (coll : IterableOnce [A @ uncheckedVariance]^ ): CC [A @ uncheckedVariance] = sortedIterableFactory.from(coll)(using ordering)
998
998
override protected def newSpecificBuilder : mutable.Builder [A @ uncheckedVariance, CC [A @ uncheckedVariance]] = sortedIterableFactory.newBuilder[A ](using ordering)
@@ -1047,7 +1047,7 @@ trait SortedMapFactoryDefaults[K, +V,
1047
1047
+ CC [x, y] <: Map [x, y] with SortedMapOps [x, y, CC , CC [x, y]] with UnsortedCC [x, y],
1048
1048
+ WithFilterCC [x] <: IterableOps [x, WithFilterCC , WithFilterCC [x]] with Iterable [x],
1049
1049
+ UnsortedCC [x, y] <: Map [x, y]] extends SortedMapOps [K , V , CC , CC [K , V @ uncheckedVariance]] with MapOps [K , V , UnsortedCC , CC [K , V @ uncheckedVariance]] {
1050
- self : IterableOps [(K , V ), WithFilterCC , _ ] =>
1050
+ self : IterableOps [(K , V ), WithFilterCC , CC [ K , V @ uncheckedVariance] ] =>
1051
1051
1052
1052
override def empty : CC [K , V @ uncheckedVariance] = sortedMapFactory.empty(using ordering)
1053
1053
override protected def fromSpecific (coll : IterableOnce [(K , V @ uncheckedVariance)]^ ): CC [K , V @ uncheckedVariance] = sortedMapFactory.from(coll)(using ordering)
0 commit comments