in scalding-core/src/main/scala/com/twitter/scalding/GeneratedTupleAdders.scala [4160:4310]
def :+[S](other: S) =
(
tup._1,
tup._2,
tup._3,
tup._4,
tup._5,
tup._6,
tup._7,
tup._8,
tup._9,
tup._10,
tup._11,
tup._12,
tup._13,
tup._14,
tup._15,
tup._16,
tup._17,
tup._18,
other
)
def +:[S](other: S) =
(
other,
tup._1,
tup._2,
tup._3,
tup._4,
tup._5,
tup._6,
tup._7,
tup._8,
tup._9,
tup._10,
tup._11,
tup._12,
tup._13,
tup._14,
tup._15,
tup._16,
tup._17,
tup._18
)
def ++[S](other: Tuple1[S]) =
(
tup._1,
tup._2,
tup._3,
tup._4,
tup._5,
tup._6,
tup._7,
tup._8,
tup._9,
tup._10,
tup._11,
tup._12,
tup._13,
tup._14,
tup._15,
tup._16,
tup._17,
tup._18,
other._1
)
def ++[S, T](other: Tuple2[S, T]) =
(
tup._1,
tup._2,
tup._3,
tup._4,
tup._5,
tup._6,
tup._7,
tup._8,
tup._9,
tup._10,
tup._11,
tup._12,
tup._13,
tup._14,
tup._15,
tup._16,
tup._17,
tup._18,
other._1,
other._2
)
def ++[S, T, U](other: Tuple3[S, T, U]) =
(
tup._1,
tup._2,
tup._3,
tup._4,
tup._5,
tup._6,
tup._7,
tup._8,
tup._9,
tup._10,
tup._11,
tup._12,
tup._13,
tup._14,
tup._15,
tup._16,
tup._17,
tup._18,
other._1,
other._2,
other._3
)
def ++[S, T, U, V](other: Tuple4[S, T, U, V]) =
(
tup._1,
tup._2,
tup._3,
tup._4,
tup._5,
tup._6,
tup._7,
tup._8,
tup._9,
tup._10,
tup._11,
tup._12,
tup._13,
tup._14,
tup._15,
tup._16,
tup._17,
tup._18,
other._1,
other._2,
other._3,
other._4
)
}
implicit def tup18ToAdder[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R](
tup: Tuple18[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R]
): Tuple18Adder[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R] = new Tuple18Adder(tup)
class Tuple19Adder[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S](
tup: Tuple19[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S]
) {