def :+[M]()

in scalding-core/src/main/scala/com/twitter/scalding/GeneratedTupleAdders.scala [2869:3124]


    def :+[M](other: M) =
      (
        tup._1,
        tup._2,
        tup._3,
        tup._4,
        tup._5,
        tup._6,
        tup._7,
        tup._8,
        tup._9,
        tup._10,
        tup._11,
        tup._12,
        other
      )
    def +:[M](other: M) =
      (
        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
      )

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

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

    def ++[M, N, O](other: Tuple3[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,
        tup._12,
        other._1,
        other._2,
        other._3
      )

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

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

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

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

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

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

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

  implicit def tup12ToAdder[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]
  ): Tuple12Adder[A, B, C, D, E, F, G, H, I, J, K, L] = new Tuple12Adder(tup)

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