@@ -92,7 +92,7 @@ sealed trait Tuple extends Any {
92
92
}
93
93
}
94
94
95
- inline def genericConcat [T <: Tuple ](xs : Tuple , ys : Tuple ): Tuple =
95
+ private [scala] inline def genericConcat [T <: Tuple ](xs : Tuple , ys : Tuple ): Tuple =
96
96
knowTupleFromArray[T ](xs.toArray ++ ys.toArray)
97
97
98
98
inline def size [This >: this .type <: Tuple ]: Size [This ] = {
@@ -144,9 +144,9 @@ object Tuple {
144
144
145
145
private [scala] type BoundedSize [X ] = BoundedSizeRecur [X , 23 ]
146
146
147
- val $emptyArray = Array [Object ]()
147
+ private [scala] val $emptyArray = Array [Object ]()
148
148
149
- def to$Array (xs : Tuple , n : Int ) = {
149
+ private [scala] def to$Array (xs : Tuple , n : Int ) = {
150
150
val arr = new Array [Object ](n)
151
151
var i = 0
152
152
var it = xs.asInstanceOf [Product ].productIterator
@@ -157,7 +157,7 @@ object Tuple {
157
157
arr
158
158
}
159
159
160
- def cons$Array [H ](x : H , elems : Array [Object ]): Array [Object ] = {
160
+ private [scala] def cons$Array [H ](x : H , elems : Array [Object ]): Array [Object ] = {
161
161
val elems1 = new Array [Object ](elems.length + 1 )
162
162
elems1(0 ) = x.asInstanceOf [Object ]
163
163
System .arraycopy(elems, 0 , elems1, 1 , elems.length)
0 commit comments