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