def :+[F]()

in scalding-core/src/main/scala/com/twitter/scalding/GeneratedTupleAdders.scala [1146:1412]


    def :+[F](other: F) =
      (tup._1, tup._2, tup._3, tup._4, tup._5, other)
    def +:[F](other: F) =
      (other, tup._1, tup._2, tup._3, tup._4, tup._5)

    def ++[F](other: Tuple1[F]) =
      (tup._1, tup._2, tup._3, tup._4, tup._5, other._1)

    def ++[F, G](other: Tuple2[F, G]) =
      (tup._1, tup._2, tup._3, tup._4, tup._5, other._1, other._2)

    def ++[F, G, H](other: Tuple3[F, G, H]) =
      (tup._1, tup._2, tup._3, tup._4, tup._5, other._1, other._2, other._3)

    def ++[F, G, H, I](other: Tuple4[F, G, H, I]) =
      (tup._1, tup._2, tup._3, tup._4, tup._5, other._1, other._2, other._3, other._4)

    def ++[F, G, H, I, J](other: Tuple5[F, G, H, I, J]) =
      (tup._1, tup._2, tup._3, tup._4, tup._5, other._1, other._2, other._3, other._4, other._5)

    def ++[F, G, H, I, J, K](other: Tuple6[F, G, H, I, J, K]) =
      (tup._1, tup._2, tup._3, tup._4, tup._5, other._1, other._2, other._3, other._4, other._5, other._6)

    def ++[F, G, H, I, J, K, L](other: Tuple7[F, G, H, I, J, K, L]) =
      (
        tup._1,
        tup._2,
        tup._3,
        tup._4,
        tup._5,
        other._1,
        other._2,
        other._3,
        other._4,
        other._5,
        other._6,
        other._7
      )

    def ++[F, G, H, I, J, K, L, M](other: Tuple8[F, G, H, I, J, K, L, M]) =
      (
        tup._1,
        tup._2,
        tup._3,
        tup._4,
        tup._5,
        other._1,
        other._2,
        other._3,
        other._4,
        other._5,
        other._6,
        other._7,
        other._8
      )

    def ++[F, G, H, I, J, K, L, M, N](other: Tuple9[F, G, H, I, J, K, L, M, N]) =
      (
        tup._1,
        tup._2,
        tup._3,
        tup._4,
        tup._5,
        other._1,
        other._2,
        other._3,
        other._4,
        other._5,
        other._6,
        other._7,
        other._8,
        other._9
      )

    def ++[F, G, H, I, J, K, L, M, N, O](other: Tuple10[F, G, H, I, J, K, L, M, N, O]) =
      (
        tup._1,
        tup._2,
        tup._3,
        tup._4,
        tup._5,
        other._1,
        other._2,
        other._3,
        other._4,
        other._5,
        other._6,
        other._7,
        other._8,
        other._9,
        other._10
      )

    def ++[F, G, H, I, J, K, L, M, N, O, P](other: Tuple11[F, G, H, I, J, K, L, M, N, O, P]) =
      (
        tup._1,
        tup._2,
        tup._3,
        tup._4,
        tup._5,
        other._1,
        other._2,
        other._3,
        other._4,
        other._5,
        other._6,
        other._7,
        other._8,
        other._9,
        other._10,
        other._11
      )

    def ++[F, G, H, I, J, K, L, M, N, O, P, Q](other: Tuple12[F, G, H, I, J, K, L, M, N, O, P, Q]) =
      (
        tup._1,
        tup._2,
        tup._3,
        tup._4,
        tup._5,
        other._1,
        other._2,
        other._3,
        other._4,
        other._5,
        other._6,
        other._7,
        other._8,
        other._9,
        other._10,
        other._11,
        other._12
      )

    def ++[F, G, H, I, J, K, L, M, N, O, P, Q, R](other: Tuple13[F, G, H, I, J, K, L, M, N, O, P, Q, R]) =
      (
        tup._1,
        tup._2,
        tup._3,
        tup._4,
        tup._5,
        other._1,
        other._2,
        other._3,
        other._4,
        other._5,
        other._6,
        other._7,
        other._8,
        other._9,
        other._10,
        other._11,
        other._12,
        other._13
      )

    def ++[F, G, H, I, J, K, L, M, N, O, P, Q, R, S](
        other: Tuple14[F, G, H, I, J, K, L, M, N, O, P, Q, R, S]
    ) =
      (
        tup._1,
        tup._2,
        tup._3,
        tup._4,
        tup._5,
        other._1,
        other._2,
        other._3,
        other._4,
        other._5,
        other._6,
        other._7,
        other._8,
        other._9,
        other._10,
        other._11,
        other._12,
        other._13,
        other._14
      )

    def ++[F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T](
        other: Tuple15[F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T]
    ) =
      (
        tup._1,
        tup._2,
        tup._3,
        tup._4,
        tup._5,
        other._1,
        other._2,
        other._3,
        other._4,
        other._5,
        other._6,
        other._7,
        other._8,
        other._9,
        other._10,
        other._11,
        other._12,
        other._13,
        other._14,
        other._15
      )

    def ++[F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U](
        other: Tuple16[F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U]
    ) =
      (
        tup._1,
        tup._2,
        tup._3,
        tup._4,
        tup._5,
        other._1,
        other._2,
        other._3,
        other._4,
        other._5,
        other._6,
        other._7,
        other._8,
        other._9,
        other._10,
        other._11,
        other._12,
        other._13,
        other._14,
        other._15,
        other._16
      )

    def ++[F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V](
        other: Tuple17[F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V]
    ) =
      (
        tup._1,
        tup._2,
        tup._3,
        tup._4,
        tup._5,
        other._1,
        other._2,
        other._3,
        other._4,
        other._5,
        other._6,
        other._7,
        other._8,
        other._9,
        other._10,
        other._11,
        other._12,
        other._13,
        other._14,
        other._15,
        other._16,
        other._17
      )
  }

  implicit def tup5ToAdder[A, B, C, D, E](tup: Tuple5[A, B, C, D, E]): Tuple5Adder[A, B, C, D, E] =
    new Tuple5Adder(tup)

  class Tuple6Adder[A, B, C, D, E, F](tup: Tuple6[A, B, C, D, E, F]) {