def :+[R]()

in scalding-core/src/main/scala/com/twitter/scalding/GeneratedTupleAdders.scala [3989:4159]


    def :+[R](other: 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,
        tup._17,
        other
      )
    def +:[R](other: R) =
      (
        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
      )

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

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

    def ++[R, S, T](other: Tuple3[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,
        tup._17,
        other._1,
        other._2,
        other._3
      )

    def ++[R, S, T, U](other: Tuple4[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,
        tup._17,
        other._1,
        other._2,
        other._3,
        other._4
      )

    def ++[R, S, T, U, V](other: Tuple5[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,
        tup._17,
        other._1,
        other._2,
        other._3,
        other._4,
        other._5
      )
  }

  implicit def tup17ToAdder[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]
  ): Tuple17Adder[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q] = new Tuple17Adder(tup)

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