in scalding-core/src/main/scala/com/twitter/scalding/GeneratedTupleAdders.scala [2408:2639]
def :+[K](other: K) =
(tup._1, tup._2, tup._3, tup._4, tup._5, tup._6, tup._7, tup._8, tup._9, tup._10, other)
def +:[K](other: K) =
(other, tup._1, tup._2, tup._3, tup._4, tup._5, tup._6, tup._7, tup._8, tup._9, tup._10)
def ++[K](other: Tuple1[K]) =
(tup._1, tup._2, tup._3, tup._4, tup._5, tup._6, tup._7, tup._8, tup._9, tup._10, other._1)
def ++[K, L](other: Tuple2[K, L]) =
(tup._1, tup._2, tup._3, tup._4, tup._5, tup._6, tup._7, tup._8, tup._9, tup._10, other._1, other._2)
def ++[K, L, M](other: Tuple3[K, L, M]) =
(
tup._1,
tup._2,
tup._3,
tup._4,
tup._5,
tup._6,
tup._7,
tup._8,
tup._9,
tup._10,
other._1,
other._2,
other._3
)
def ++[K, L, M, N](other: Tuple4[K, L, M, N]) =
(
tup._1,
tup._2,
tup._3,
tup._4,
tup._5,
tup._6,
tup._7,
tup._8,
tup._9,
tup._10,
other._1,
other._2,
other._3,
other._4
)
def ++[K, L, M, N, O](other: Tuple5[K, L, M, N, O]) =
(
tup._1,
tup._2,
tup._3,
tup._4,
tup._5,
tup._6,
tup._7,
tup._8,
tup._9,
tup._10,
other._1,
other._2,
other._3,
other._4,
other._5
)
def ++[K, L, M, N, O, P](other: Tuple6[K, L, M, N, O, P]) =
(
tup._1,
tup._2,
tup._3,
tup._4,
tup._5,
tup._6,
tup._7,
tup._8,
tup._9,
tup._10,
other._1,
other._2,
other._3,
other._4,
other._5,
other._6
)
def ++[K, L, M, N, O, P, Q](other: Tuple7[K, L, M, N, O, P, Q]) =
(
tup._1,
tup._2,
tup._3,
tup._4,
tup._5,
tup._6,
tup._7,
tup._8,
tup._9,
tup._10,
other._1,
other._2,
other._3,
other._4,
other._5,
other._6,
other._7
)
def ++[K, L, M, N, O, P, Q, R](other: Tuple8[K, L, M, N, O, P, Q, R]) =
(
tup._1,
tup._2,
tup._3,
tup._4,
tup._5,
tup._6,
tup._7,
tup._8,
tup._9,
tup._10,
other._1,
other._2,
other._3,
other._4,
other._5,
other._6,
other._7,
other._8
)
def ++[K, L, M, N, O, P, Q, R, S](other: Tuple9[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,
tup._9,
tup._10,
other._1,
other._2,
other._3,
other._4,
other._5,
other._6,
other._7,
other._8,
other._9
)
def ++[K, L, M, N, O, P, Q, R, S, T](other: Tuple10[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,
tup._9,
tup._10,
other._1,
other._2,
other._3,
other._4,
other._5,
other._6,
other._7,
other._8,
other._9,
other._10
)
def ++[K, L, M, N, O, P, Q, R, S, T, U](other: Tuple11[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,
tup._9,
tup._10,
other._1,
other._2,
other._3,
other._4,
other._5,
other._6,
other._7,
other._8,
other._9,
other._10,
other._11
)
def ++[K, L, M, N, O, P, Q, R, S, T, U, V](other: Tuple12[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,
tup._9,
tup._10,
other._1,
other._2,
other._3,
other._4,
other._5,
other._6,
other._7,
other._8,
other._9,
other._10,
other._11,
other._12
)
}
implicit def tup10ToAdder[A, B, C, D, E, F, G, H, I, J](
tup: Tuple10[A, B, C, D, E, F, G, H, I, J]
): Tuple10Adder[A, B, C, D, E, F, G, H, I, J] = new Tuple10Adder(tup)
class Tuple11Adder[A, B, C, D, E, F, G, H, I, J, K](tup: Tuple11[A, B, C, D, E, F, G, H, I, J, K]) {