@@ -94,18 +94,18 @@ class CompletionSuite extends BaseCompletionSuite:
9494 |newBuilder[A]: Builder[A, List[A]]
9595 |apply[A](elems: A*): List[A]
9696 |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]]]]]
101101 |fill[A](n: Int)(elem: => A): List[A]
102102 |iterate[A](start: A, len: Int)(f: A => A): List[A]
103103 |range[A: Integral](start: A, end: A): List[A]
104104 |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]]]]]
109109 |tabulate[A](n: Int)(f: Int => A): List[A]
110110 |unapplySeq[A](x: List[A] @uncheckedVariance): UnapplySeqWrapper[A]
111111 |unfold[A, S](init: S)(f: S => Option[(A, S)]): List[A]
@@ -116,7 +116,7 @@ class CompletionSuite extends BaseCompletionSuite:
116116 |ensuring(cond: List.type => Boolean, msg: => Any): List.type
117117 |fromSpecific(from: Any)(it: IterableOnce[Nothing]): List[Nothing]
118118 |fromSpecific(it: IterableOnce[Nothing]): List[Nothing]
119- |nn: List.type & List.type
119+ |nn: List.type
120120 |toFactory(from: Any): Factory[Nothing, List[Nothing]]
121121 |formatted(fmtstr: String): String
122122 |→[B](y: B): (List.type, B)
0 commit comments