in scalding-core/src/main/scala/com/twitter/scalding/GeneratedTupleAdders.scala [1933:2172]
def :+[I](other: I) =
(tup._1, tup._2, tup._3, tup._4, tup._5, tup._6, tup._7, tup._8, other)
def +:[I](other: I) =
(other, tup._1, tup._2, tup._3, tup._4, tup._5, tup._6, tup._7, tup._8)
def ++[I](other: Tuple1[I]) =
(tup._1, tup._2, tup._3, tup._4, tup._5, tup._6, tup._7, tup._8, other._1)
def ++[I, J](other: Tuple2[I, J]) =
(tup._1, tup._2, tup._3, tup._4, tup._5, tup._6, tup._7, tup._8, other._1, other._2)
def ++[I, J, K](other: Tuple3[I, J, K]) =
(tup._1, tup._2, tup._3, tup._4, tup._5, tup._6, tup._7, tup._8, other._1, other._2, other._3)
def ++[I, J, K, L](other: Tuple4[I, J, K, L]) =
(tup._1, tup._2, tup._3, tup._4, tup._5, tup._6, tup._7, tup._8, other._1, other._2, other._3, other._4)
def ++[I, J, K, L, M](other: Tuple5[I, J, K, L, M]) =
(
tup._1,
tup._2,
tup._3,
tup._4,
tup._5,
tup._6,
tup._7,
tup._8,
other._1,
other._2,
other._3,
other._4,
other._5
)
def ++[I, J, K, L, M, N](other: Tuple6[I, J, K, L, M, N]) =
(
tup._1,
tup._2,
tup._3,
tup._4,
tup._5,
tup._6,
tup._7,
tup._8,
other._1,
other._2,
other._3,
other._4,
other._5,
other._6
)
def ++[I, J, K, L, M, N, O](other: Tuple7[I, J, K, L, M, N, O]) =
(
tup._1,
tup._2,
tup._3,
tup._4,
tup._5,
tup._6,
tup._7,
tup._8,
other._1,
other._2,
other._3,
other._4,
other._5,
other._6,
other._7
)
def ++[I, J, K, L, M, N, O, P](other: Tuple8[I, J, K, L, M, N, O, P]) =
(
tup._1,
tup._2,
tup._3,
tup._4,
tup._5,
tup._6,
tup._7,
tup._8,
other._1,
other._2,
other._3,
other._4,
other._5,
other._6,
other._7,
other._8
)
def ++[I, J, K, L, M, N, O, P, Q](other: Tuple9[I, J, K, L, M, N, O, P, Q]) =
(
tup._1,
tup._2,
tup._3,
tup._4,
tup._5,
tup._6,
tup._7,
tup._8,
other._1,
other._2,
other._3,
other._4,
other._5,
other._6,
other._7,
other._8,
other._9
)
def ++[I, J, K, L, M, N, O, P, Q, R](other: Tuple10[I, J, K, L, M, N, O, P, Q, R]) =
(
tup._1,
tup._2,
tup._3,
tup._4,
tup._5,
tup._6,
tup._7,
tup._8,
other._1,
other._2,
other._3,
other._4,
other._5,
other._6,
other._7,
other._8,
other._9,
other._10
)
def ++[I, J, K, L, M, N, O, P, Q, R, S](other: Tuple11[I, J, K, L, M, N, O, P, Q, R, S]) =
(
tup._1,
tup._2,
tup._3,
tup._4,
tup._5,
tup._6,
tup._7,
tup._8,
other._1,
other._2,
other._3,
other._4,
other._5,
other._6,
other._7,
other._8,
other._9,
other._10,
other._11
)
def ++[I, J, K, L, M, N, O, P, Q, R, S, T](other: Tuple12[I, J, K, L, M, N, O, P, Q, R, S, T]) =
(
tup._1,
tup._2,
tup._3,
tup._4,
tup._5,
tup._6,
tup._7,
tup._8,
other._1,
other._2,
other._3,
other._4,
other._5,
other._6,
other._7,
other._8,
other._9,
other._10,
other._11,
other._12
)
def ++[I, J, K, L, M, N, O, P, Q, R, S, T, U](other: Tuple13[I, J, K, L, M, N, O, P, Q, R, S, T, U]) =
(
tup._1,
tup._2,
tup._3,
tup._4,
tup._5,
tup._6,
tup._7,
tup._8,
other._1,
other._2,
other._3,
other._4,
other._5,
other._6,
other._7,
other._8,
other._9,
other._10,
other._11,
other._12,
other._13
)
def ++[I, J, K, L, M, N, O, P, Q, R, S, T, U, V](
other: Tuple14[I, J, K, L, M, N, O, P, Q, R, S, T, U, V]
) =
(
tup._1,
tup._2,
tup._3,
tup._4,
tup._5,
tup._6,
tup._7,
tup._8,
other._1,
other._2,
other._3,
other._4,
other._5,
other._6,
other._7,
other._8,
other._9,
other._10,
other._11,
other._12,
other._13,
other._14
)
}
implicit def tup8ToAdder[A, B, C, D, E, F, G, H](
tup: Tuple8[A, B, C, D, E, F, G, H]
): Tuple8Adder[A, B, C, D, E, F, G, H] = new Tuple8Adder(tup)
class Tuple9Adder[A, B, C, D, E, F, G, H, I](tup: Tuple9[A, B, C, D, E, F, G, H, I]) {