def :+[G]()

in scalding-core/src/main/scala/com/twitter/scalding/GeneratedTupleAdders.scala [1413:1674]


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

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

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

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

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

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

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

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

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

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

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

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

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

  implicit def tup6ToAdder[A, B, C, D, E, F](tup: Tuple6[A, B, C, D, E, F]): Tuple6Adder[A, B, C, D, E, F] =
    new Tuple6Adder(tup)

  class Tuple7Adder[A, B, C, D, E, F, G](tup: Tuple7[A, B, C, D, E, F, G]) {