dropA3

fun <A1, A2, A3> Tuple3<A1, A2, A3>.dropA3(): Tuple2<A1, A2>

Creates a new Tuple2 by copying this Tuple3 but dropping its 3rd component (Tuple3.a3).

Return

The newly created Tuple2.

Since

3.2.0


fun <A1, A2, A3, A4> Tuple4<A1, A2, A3, A4>.dropA3(): Tuple3<A1, A2, A4>

Creates a new Tuple3 by copying this Tuple4 but dropping its 3rd component (Tuple4.a3).

Return

The newly created Tuple3.

Since

3.2.0


fun <A1, A2, A3, A4, A5> Tuple5<A1, A2, A3, A4, A5>.dropA3(): Tuple4<A1, A2, A4, A5>

Creates a new Tuple4 by copying this Tuple5 but dropping its 3rd component (Tuple5.a3).

Return

The newly created Tuple4.

Since

3.2.0


fun <A1, A2, A3, A4, A5, A6> Tuple6<A1, A2, A3, A4, A5, A6>.dropA3(): Tuple5<A1, A2, A4, A5, A6>

Creates a new Tuple5 by copying this Tuple6 but dropping its 3rd component (Tuple6.a3).

Return

The newly created Tuple5.

Since

3.2.0


fun <A1, A2, A3, A4, A5, A6, A7> Tuple7<A1, A2, A3, A4, A5, A6, A7>.dropA3(): Tuple6<A1, A2, A4, A5, A6, A7>

Creates a new Tuple6 by copying this Tuple7 but dropping its 3rd component (Tuple7.a3).

Return

The newly created Tuple6.

Since

3.2.0


fun <A1, A2, A3, A4, A5, A6, A7, A8> Tuple8<A1, A2, A3, A4, A5, A6, A7, A8>.dropA3(): Tuple7<A1, A2, A4, A5, A6, A7, A8>

Creates a new Tuple7 by copying this Tuple8 but dropping its 3rd component (Tuple8.a3).

Return

The newly created Tuple7.

Since

3.2.0


fun <A1, A2, A3, A4, A5, A6, A7, A8, A9> Tuple9<A1, A2, A3, A4, A5, A6, A7, A8, A9>.dropA3(): Tuple8<A1, A2, A4, A5, A6, A7, A8, A9>

Creates a new Tuple8 by copying this Tuple9 but dropping its 3rd component (Tuple9.a3).

Return

The newly created Tuple8.

Since

3.2.0