in scalding-core/src/main/scala/com/twitter/scalding/GeneratedTupleAdders.scala [6:303]
def :+[B](other: B) =
(tup._1, other)
def +:[B](other: B) =
(other, tup._1)
def ++[B](other: Tuple1[B]) =
(tup._1, other._1)
def ++[B, C](other: Tuple2[B, C]) =
(tup._1, other._1, other._2)
def ++[B, C, D](other: Tuple3[B, C, D]) =
(tup._1, other._1, other._2, other._3)
def ++[B, C, D, E](other: Tuple4[B, C, D, E]) =
(tup._1, other._1, other._2, other._3, other._4)
def ++[B, C, D, E, F](other: Tuple5[B, C, D, E, F]) =
(tup._1, other._1, other._2, other._3, other._4, other._5)
def ++[B, C, D, E, F, G](other: Tuple6[B, C, D, E, F, G]) =
(tup._1, other._1, other._2, other._3, other._4, other._5, other._6)
def ++[B, C, D, E, F, G, H](other: Tuple7[B, C, D, E, F, G, H]) =
(tup._1, other._1, other._2, other._3, other._4, other._5, other._6, other._7)
def ++[B, C, D, E, F, G, H, I](other: Tuple8[B, C, D, E, F, G, H, I]) =
(tup._1, other._1, other._2, other._3, other._4, other._5, other._6, other._7, other._8)
def ++[B, C, D, E, F, G, H, I, J](other: Tuple9[B, C, D, E, F, G, H, I, J]) =
(tup._1, other._1, other._2, other._3, other._4, other._5, other._6, other._7, other._8, other._9)
def ++[B, C, D, E, F, G, H, I, J, K](other: Tuple10[B, C, D, E, F, G, H, I, J, K]) =
(
tup._1,
other._1,
other._2,
other._3,
other._4,
other._5,
other._6,
other._7,
other._8,
other._9,
other._10
)
def ++[B, C, D, E, F, G, H, I, J, K, L](other: Tuple11[B, C, D, E, F, G, H, I, J, K, L]) =
(
tup._1,
other._1,
other._2,
other._3,
other._4,
other._5,
other._6,
other._7,
other._8,
other._9,
other._10,
other._11
)
def ++[B, C, D, E, F, G, H, I, J, K, L, M](other: Tuple12[B, C, D, E, F, G, H, I, J, K, L, M]) =
(
tup._1,
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 ++[B, C, D, E, F, G, H, I, J, K, L, M, N](other: Tuple13[B, C, D, E, F, G, H, I, J, K, L, M, N]) =
(
tup._1,
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 ++[B, C, D, E, F, G, H, I, J, K, L, M, N, O](
other: Tuple14[B, C, D, E, F, G, H, I, J, K, L, M, N, O]
) =
(
tup._1,
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
)
def ++[B, C, D, E, F, G, H, I, J, K, L, M, N, O, P](
other: Tuple15[B, C, D, E, F, G, H, I, J, K, L, M, N, O, P]
) =
(
tup._1,
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,
other._15
)
def ++[B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q](
other: Tuple16[B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q]
) =
(
tup._1,
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,
other._15,
other._16
)
def ++[B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R](
other: Tuple17[B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R]
) =
(
tup._1,
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,
other._15,
other._16,
other._17
)
def ++[B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S](
other: Tuple18[B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S]
) =
(
tup._1,
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,
other._15,
other._16,
other._17,
other._18
)
def ++[B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T](
other: Tuple19[B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T]
) =
(
tup._1,
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,
other._15,
other._16,
other._17,
other._18,
other._19
)
def ++[B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U](
other: Tuple20[B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U]
) =
(
tup._1,
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,
other._15,
other._16,
other._17,
other._18,
other._19,
other._20
)
def ++[B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V](
other: Tuple21[B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V]
) =
(
tup._1,
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,
other._15,
other._16,
other._17,
other._18,
other._19,
other._20,
other._21
)
}
implicit def tup1ToAdder[A](tup: Tuple1[A]): Tuple1Adder[A] = new Tuple1Adder(tup)
class Tuple2Adder[A, B](tup: Tuple2[A, B]) {