def :+[L]()

in scalding-core/src/main/scala/com/twitter/scalding/GeneratedTupleAdders.scala [2640:2868]


    def :+[L](other: L) =
      (tup._1, tup._2, tup._3, tup._4, tup._5, tup._6, tup._7, tup._8, tup._9, tup._10, tup._11, other)
    def +:[L](other: L) =
      (other, tup._1, tup._2, tup._3, tup._4, tup._5, tup._6, tup._7, tup._8, tup._9, tup._10, tup._11)

    def ++[L](other: Tuple1[L]) =
      (tup._1, tup._2, tup._3, tup._4, tup._5, tup._6, tup._7, tup._8, tup._9, tup._10, tup._11, other._1)

    def ++[L, M](other: Tuple2[L, M]) =
      (
        tup._1,
        tup._2,
        tup._3,
        tup._4,
        tup._5,
        tup._6,
        tup._7,
        tup._8,
        tup._9,
        tup._10,
        tup._11,
        other._1,
        other._2
      )

    def ++[L, M, N](other: Tuple3[L, M, N]) =
      (
        tup._1,
        tup._2,
        tup._3,
        tup._4,
        tup._5,
        tup._6,
        tup._7,
        tup._8,
        tup._9,
        tup._10,
        tup._11,
        other._1,
        other._2,
        other._3
      )

    def ++[L, M, N, O](other: Tuple4[L, M, N, O]) =
      (
        tup._1,
        tup._2,
        tup._3,
        tup._4,
        tup._5,
        tup._6,
        tup._7,
        tup._8,
        tup._9,
        tup._10,
        tup._11,
        other._1,
        other._2,
        other._3,
        other._4
      )

    def ++[L, M, N, O, P](other: Tuple5[L, M, 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,
        other._1,
        other._2,
        other._3,
        other._4,
        other._5
      )

    def ++[L, M, N, O, P, Q](other: Tuple6[L, M, 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,
        other._1,
        other._2,
        other._3,
        other._4,
        other._5,
        other._6
      )

    def ++[L, M, N, O, P, Q, R](other: Tuple7[L, M, 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,
        other._1,
        other._2,
        other._3,
        other._4,
        other._5,
        other._6,
        other._7
      )

    def ++[L, M, N, O, P, Q, R, S](other: Tuple8[L, M, 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,
        other._1,
        other._2,
        other._3,
        other._4,
        other._5,
        other._6,
        other._7,
        other._8
      )

    def ++[L, M, N, O, P, Q, R, S, T](other: Tuple9[L, M, 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,
        other._1,
        other._2,
        other._3,
        other._4,
        other._5,
        other._6,
        other._7,
        other._8,
        other._9
      )

    def ++[L, M, N, O, P, Q, R, S, T, U](other: Tuple10[L, M, 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,
        other._1,
        other._2,
        other._3,
        other._4,
        other._5,
        other._6,
        other._7,
        other._8,
        other._9,
        other._10
      )

    def ++[L, M, N, O, P, Q, R, S, T, U, V](other: Tuple11[L, M, 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,
        other._1,
        other._2,
        other._3,
        other._4,
        other._5,
        other._6,
        other._7,
        other._8,
        other._9,
        other._10,
        other._11
      )
  }

  implicit def tup11ToAdder[A, B, C, D, E, F, G, H, I, J, K](
      tup: Tuple11[A, B, C, D, E, F, G, H, I, J, K]
  ): Tuple11Adder[A, B, C, D, E, F, G, H, I, J, K] = new Tuple11Adder(tup)

  class Tuple12Adder[A, B, C, D, E, F, G, H, I, J, K, L](tup: Tuple12[A, B, C, D, E, F, G, H, I, J, K, L]) {