def :+[Q]()

in scalding-core/src/main/scala/com/twitter/scalding/GeneratedTupleAdders.scala [3799:3988]


    def :+[Q](other: Q) =
      (
        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,
        other
      )
    def +:[Q](other: Q) =
      (
        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
      )

    def ++[Q](other: Tuple1[Q]) =
      (
        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,
        other._1
      )

    def ++[Q, R](other: Tuple2[Q, R]) =
      (
        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,
        other._1,
        other._2
      )

    def ++[Q, R, S](other: Tuple3[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,
        tup._12,
        tup._13,
        tup._14,
        tup._15,
        tup._16,
        other._1,
        other._2,
        other._3
      )

    def ++[Q, R, S, T](other: Tuple4[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,
        tup._12,
        tup._13,
        tup._14,
        tup._15,
        tup._16,
        other._1,
        other._2,
        other._3,
        other._4
      )

    def ++[Q, R, S, T, U](other: Tuple5[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,
        tup._12,
        tup._13,
        tup._14,
        tup._15,
        tup._16,
        other._1,
        other._2,
        other._3,
        other._4,
        other._5
      )

    def ++[Q, R, S, T, U, V](other: Tuple6[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,
        tup._12,
        tup._13,
        tup._14,
        tup._15,
        tup._16,
        other._1,
        other._2,
        other._3,
        other._4,
        other._5,
        other._6
      )
  }

  implicit def tup16ToAdder[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P](
      tup: Tuple16[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P]
  ): Tuple16Adder[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P] = new Tuple16Adder(tup)

  class Tuple17Adder[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q](
      tup: Tuple17[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q]
  ) {