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