tuple

fun tuple(): None
fun <A> tuple(first: A): Tuple1<A>
fun <A, B> tuple(first: A, second: B): Tuple2<A, B>
fun <A, B, C> tuple(first: A, second: B, third: C): Tuple3<A, B, C>
fun <A, B, C, D> tuple(first: A, second: B, third: C, fourth: D): Tuple4<A, B, C, D>
fun <A, B, C, D, E> tuple(first: A, second: B, third: C, fourth: D, fifth: E): Tuple5<A, B, C, D, E>
fun <A, B, C, D, E, F> tuple(first: A, second: B, third: C, fourth: D, fifth: E, sixth: F): Tuple6<A, B, C, D, E, F>
fun <A, B, C, D, E, F, G> tuple(first: A, second: B, third: C, fourth: D, fifth: E, sixth: F, seventh: G): Tuple7<A, B, C, D, E, F, G>
fun <A, B, C, D, E, F, G, H> tuple(first: A, second: B, third: C, fourth: D, fifth: E, sixth: F, seventh: G, eighth: H): Tuple8<A, B, C, D, E, F, G, H>
fun <A, B, C, D, E, F, G, H, I> tuple(first: A, second: B, third: C, fourth: D, fifth: E, sixth: F, seventh: G, eighth: H, ninth: I): Tuple9<A, B, C, D, E, F, G, H, I>
fun <A, B, C, D, E, F, G, H, I, J> tuple(first: A, second: B, third: C, fourth: D, fifth: E, sixth: F, seventh: G, eighth: H, ninth: I, tenth: J): Tuple10<A, B, C, D, E, F, G, H, I, J>