def :+[E]()

in scalding-core/src/main/scala/com/twitter/scalding/GeneratedTupleAdders.scala [873:1145]


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

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

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

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

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

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

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

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

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

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

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

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

    def ++[E, F, G, H, I, J, K, L, M, N, O, P](other: Tuple12[E, F, G, H, I, J, K, L, M, N, O, P]) =
      (
        tup._1,
        tup._2,
        tup._3,
        tup._4,
        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 ++[E, F, G, H, I, J, K, L, M, N, O, P, Q](other: Tuple13[E, F, G, H, I, J, K, L, M, N, O, P, Q]) =
      (
        tup._1,
        tup._2,
        tup._3,
        tup._4,
        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 ++[E, F, G, H, I, J, K, L, M, N, O, P, Q, R](
        other: Tuple14[E, F, G, H, I, J, K, L, M, N, O, P, Q, R]
    ) =
      (
        tup._1,
        tup._2,
        tup._3,
        tup._4,
        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 ++[E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S](
        other: Tuple15[E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S]
    ) =
      (
        tup._1,
        tup._2,
        tup._3,
        tup._4,
        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 ++[E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T](
        other: Tuple16[E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T]
    ) =
      (
        tup._1,
        tup._2,
        tup._3,
        tup._4,
        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 ++[E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U](
        other: Tuple17[E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U]
    ) =
      (
        tup._1,
        tup._2,
        tup._3,
        tup._4,
        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
      )

    def ++[E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V](
        other: Tuple18[E, 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,
        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,
        other._18
      )
  }

  implicit def tup4ToAdder[A, B, C, D](tup: Tuple4[A, B, C, D]): Tuple4Adder[A, B, C, D] = new Tuple4Adder(
    tup
  )

  class Tuple5Adder[A, B, C, D, E](tup: Tuple5[A, B, C, D, E]) {