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