Package com.github.phantomthief.tuple
Class Tuple
- java.lang.Object
-
- com.github.phantomthief.tuple.Tuple
-
public final class Tuple extends Object
- Author:
- w.vela 多元组的工厂方法
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static <A,B>
TwoTuple<A,B>tuple(A a, B b)static <A,B,C>
ThreeTuple<A,B,C>tuple(A a, B b, C c)static <A,B,C,D>
FourTuple<A,B,C,D>tuple(A a, B b, C c, D d)
-
-
-
Method Detail
-
tuple
public static <A,B> TwoTuple<A,B> tuple(A a, B b)
-
tuple
public static <A,B,C> ThreeTuple<A,B,C> tuple(A a, B b, C c)
-
tuple
public static <A,B,C,D> FourTuple<A,B,C,D> tuple(A a, B b, C c, D d)
-
-