in scalding-core/src/main/scala/com/twitter/scalding/GeneratedTupleAdders.scala [3591:3798]
def :+[P](other: P) =
(
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,
other
)
def +:[P](other: P) =
(
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
)
def ++[P](other: Tuple1[P]) =
(
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,
other._1
)
def ++[P, Q](other: Tuple2[P, Q]) =
(
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,
other._1,
other._2
)
def ++[P, Q, R](other: Tuple3[P, Q, R]) =
(
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,
other._1,
other._2,
other._3
)
def ++[P, Q, R, S](other: Tuple4[P, Q, R, 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,
other._1,
other._2,
other._3,
other._4
)
def ++[P, Q, R, S, T](other: Tuple5[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,
tup._11,
tup._12,
tup._13,
tup._14,
tup._15,
other._1,
other._2,
other._3,
other._4,
other._5
)
def ++[P, Q, R, S, T, U](other: Tuple6[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,
tup._11,
tup._12,
tup._13,
tup._14,
tup._15,
other._1,
other._2,
other._3,
other._4,
other._5,
other._6
)
def ++[P, Q, R, S, T, U, V](other: Tuple7[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,
tup._11,
tup._12,
tup._13,
tup._14,
tup._15,
other._1,
other._2,
other._3,
other._4,
other._5,
other._6,
other._7
)
}
implicit def tup15ToAdder[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O](
tup: Tuple15[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O]
): Tuple15Adder[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O] = new Tuple15Adder(tup)
class Tuple16Adder[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P](
tup: Tuple16[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P]
) {