def :+[T]()

in scalding-core/src/main/scala/com/twitter/scalding/GeneratedTupleAdders.scala [4311:4440]


    def :+[T](other: 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,
        tup._14,
        tup._15,
        tup._16,
        tup._17,
        tup._18,
        tup._19,
        other
      )
    def +:[T](other: T) =
      (
        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,
        tup._14,
        tup._15,
        tup._16,
        tup._17,
        tup._18,
        tup._19
      )

    def ++[T](other: Tuple1[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,
        tup._14,
        tup._15,
        tup._16,
        tup._17,
        tup._18,
        tup._19,
        other._1
      )

    def ++[T, U](other: Tuple2[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,
        tup._14,
        tup._15,
        tup._16,
        tup._17,
        tup._18,
        tup._19,
        other._1,
        other._2
      )

    def ++[T, U, V](other: Tuple3[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,
        tup._14,
        tup._15,
        tup._16,
        tup._17,
        tup._18,
        tup._19,
        other._1,
        other._2,
        other._3
      )
  }

  implicit def tup19ToAdder[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S](
      tup: Tuple19[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S]
  ): Tuple19Adder[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S] = new Tuple19Adder(tup)

  class Tuple20Adder[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T](
      tup: Tuple20[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T]
  ) {