2015-11-11 20:20:04 -08:00
|
|
|
// onjava/Tuple.java
|
2015-12-15 11:47:04 -08:00
|
|
|
// (c)2016 MindView LLC: see Copyright.txt
|
2015-11-15 15:51:35 -08:00
|
|
|
// We make no guarantees that this code is fit for any purpose.
|
|
|
|
// Visit http://mindviewinc.com/Books/OnJava/ for more book information.
|
2016-01-25 18:05:55 -08:00
|
|
|
// Tuple library using type argument inference
|
2015-11-11 20:20:04 -08:00
|
|
|
package onjava;
|
|
|
|
|
|
|
|
public class Tuple {
|
|
|
|
public static <A, B> Tuple2<A, B> tuple(A a, B b) {
|
|
|
|
return new Tuple2<>(a, b);
|
|
|
|
}
|
|
|
|
public static <A, B, C> Tuple3<A, B, C>
|
|
|
|
tuple(A a, B b, C c) {
|
|
|
|
return new Tuple3<>(a, b, c);
|
|
|
|
}
|
|
|
|
public static <A, B, C, D> Tuple4<A, B, C, D>
|
|
|
|
tuple(A a, B b, C c, D d) {
|
|
|
|
return new Tuple4<>(a, b, c, d);
|
|
|
|
}
|
|
|
|
public static <A, B, C, D, E>
|
|
|
|
Tuple5<A, B, C, D, E> tuple(A a, B b, C c, D d, E e) {
|
|
|
|
return new Tuple5<>(a, b, c, d, e);
|
|
|
|
}
|
|
|
|
}
|