@@ -23,7 +23,7 @@ sealed trait Tuple extends Any {
23
23
case Some (4 ) =>
24
24
val t = asInstanceOf [Tuple4 [Object , Object , Object , Object ]]
25
25
Array (t._1, t._2, t._3, t._4)
26
- case Some (n) if n <= $ MaxSpecialized =>
26
+ case Some (n) if n <= MaxSpecialized =>
27
27
to$Array (this , n)
28
28
case Some (n) =>
29
29
asInstanceOf [TupleXXL ].elems
@@ -125,8 +125,8 @@ sealed trait Tuple extends Any {
125
125
}
126
126
127
127
object Tuple {
128
- inline val $ MaxSpecialized = 22
129
- inline private val XXL = $ MaxSpecialized + 1
128
+ inline val MaxSpecialized = 22
129
+ inline private val XXL = MaxSpecialized + 1
130
130
131
131
final val stageIt = false
132
132
@@ -328,9 +328,9 @@ sealed trait NonEmptyTuple extends Tuple {
328
328
case Some (4 ) =>
329
329
val t = asInstanceOf [Tuple4 [_, _, _, _]]
330
330
t._1
331
- case Some (n) if n > 4 && n <= $ MaxSpecialized =>
331
+ case Some (n) if n > 4 && n <= MaxSpecialized =>
332
332
asInstanceOf [Product ].productElement(0 )
333
- case Some (n) if n > $ MaxSpecialized =>
333
+ case Some (n) if n > MaxSpecialized =>
334
334
val t = asInstanceOf [TupleXXL ]
335
335
t.elems(0 )
336
336
case None =>
@@ -412,13 +412,13 @@ sealed trait NonEmptyTuple extends Tuple {
412
412
case Some (3 ) => t._4.asInstanceOf [Result ]
413
413
case _ => fallbackApply(n).asInstanceOf [Result ]
414
414
}
415
- case Some (s) if s > 4 && s <= $ MaxSpecialized =>
415
+ case Some (s) if s > 4 && s <= MaxSpecialized =>
416
416
val t = asInstanceOf [Product ]
417
417
inline constValueOpt[n.type ] match {
418
418
case Some (n) if n >= 0 && n < s => t.productElement(n).asInstanceOf [Result ]
419
419
case _ => fallbackApply(n).asInstanceOf [Result ]
420
420
}
421
- case Some (s) if s > $ MaxSpecialized =>
421
+ case Some (s) if s > MaxSpecialized =>
422
422
val t = asInstanceOf [TupleXXL ]
423
423
inline constValueOpt[n.type ] match {
424
424
case Some (n) if n >= 0 && n < s => t.elems(n).asInstanceOf [Result ]
0 commit comments