@@ -94,18 +94,18 @@ class CompletionSuite extends BaseCompletionSuite:
94
94
|newBuilder[A]: Builder[A, List[A]]
95
95
|apply[A](elems: A*): List[A]
96
96
|concat[A](xss: Iterable[A]*): List[A]
97
- |fill[A](n1: Int, n2: Int)(elem: => A): List[List[A] @uncheckedVariance ]
98
- |fill[A](n1: Int, n2: Int, n3: Int)(elem: => A): List[List[List[A]] @uncheckedVariance ]
99
- |fill[A](n1: Int, n2: Int, n3: Int, n4: Int)(elem: => A): List[List[List[List[A]]] @uncheckedVariance ]
100
- |fill[A](n1: Int, n2: Int, n3: Int, n4: Int, n5: Int)(elem: => A): List[List[List[List[List[A]]]] @uncheckedVariance ]
97
+ |fill[A](n1: Int, n2: Int)(elem: => A): List[List[A]]
98
+ |fill[A](n1: Int, n2: Int, n3: Int)(elem: => A): List[List[List[A]]]
99
+ |fill[A](n1: Int, n2: Int, n3: Int, n4: Int)(elem: => A): List[List[List[List[A]]]]
100
+ |fill[A](n1: Int, n2: Int, n3: Int, n4: Int, n5: Int)(elem: => A): List[List[List[List[List[A]]]]]
101
101
|fill[A](n: Int)(elem: => A): List[A]
102
102
|iterate[A](start: A, len: Int)(f: A => A): List[A]
103
103
|range[A: Integral](start: A, end: A): List[A]
104
104
|range[A: Integral](start: A, end: A, step: A): List[A]
105
- |tabulate[A](n1: Int, n2: Int)(f: (Int, Int) => A): List[List[A] @uncheckedVariance ]
106
- |tabulate[A](n1: Int, n2: Int, n3: Int)(f: (Int, Int, Int) => A): List[List[List[A]] @uncheckedVariance ]
107
- |tabulate[A](n1: Int, n2: Int, n3: Int, n4: Int)(f: (Int, Int, Int, Int) => A): List[List[List[List[A]]] @uncheckedVariance ]
108
- |tabulate[A](n1: Int, n2: Int, n3: Int, n4: Int, n5: Int)(f: (Int, Int, Int, Int, Int) => A): List[List[List[List[List[A]]]] @uncheckedVariance ]
105
+ |tabulate[A](n1: Int, n2: Int)(f: (Int, Int) => A): List[List[A]]
106
+ |tabulate[A](n1: Int, n2: Int, n3: Int)(f: (Int, Int, Int) => A): List[List[List[A]]]
107
+ |tabulate[A](n1: Int, n2: Int, n3: Int, n4: Int)(f: (Int, Int, Int, Int) => A): List[List[List[List[A]]]]
108
+ |tabulate[A](n1: Int, n2: Int, n3: Int, n4: Int, n5: Int)(f: (Int, Int, Int, Int, Int) => A): List[List[List[List[List[A]]]]]
109
109
|tabulate[A](n: Int)(f: Int => A): List[A]
110
110
|unapplySeq[A](x: List[A] @uncheckedVariance): UnapplySeqWrapper[A]
111
111
|unfold[A, S](init: S)(f: S => Option[(A, S)]): List[A]
@@ -116,7 +116,7 @@ class CompletionSuite extends BaseCompletionSuite:
116
116
|ensuring(cond: List.type => Boolean, msg: => Any): List.type
117
117
|fromSpecific(from: Any)(it: IterableOnce[Nothing]): List[Nothing]
118
118
|fromSpecific(it: IterableOnce[Nothing]): List[Nothing]
119
- |nn: List.type & List.type
119
+ |nn: List.type
120
120
|runtimeChecked scala.collection.immutable
121
121
|toFactory(from: Any): Factory[Nothing, List[Nothing]]
122
122
|formatted(fmtstr: String): String
0 commit comments