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 cc04eaf commit 6d8305dCopy full SHA for 6d8305d
library/src/scala/Tuple.scala
@@ -213,5 +213,5 @@ sealed trait NonEmptyTuple extends Tuple {
213
sealed abstract class *:[+H, +T <: Tuple] extends NonEmptyTuple
214
215
object *: {
216
- inline def unapply[H, T <: Tuple](x: H *: T) = (x.head, x.tail)
+ def unapply[H, T <: Tuple](x: H *: T): (H, T) = (x.head, x.tail)
217
}
0 commit comments