We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9bfde7 commit 3a49d59Copy full SHA for 3a49d59
library/src/scala/Tuple.scala
@@ -13,9 +13,9 @@ sealed trait Tuple extends Product {
13
runtime.Tuples.toArray(this)
14
15
/** Create a copy of this tuple as a List */
16
- inline def toList[This >: this.type <: Tuple]: List[Union[This]] =
+ inline def toList: List[Union[this.type]] =
17
this.productIterator.toList
18
- .asInstanceOf[List[Union[This]]]
+ .asInstanceOf[List[Union[this.type]]]
19
20
/** Create a copy of this tuple as an IArray */
21
inline def toIArray: IArray[Object] =
0 commit comments