All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.artclod.common.base.Tuples Maven / Gradle / Ivy

package com.artclod.common.base;

public class Tuples {

	public static  T2 t(E1 e1, E2 e2){
		return new T2(e1, e2);
	}
	
	public static  T3 t(E1 e1, E2 e2, E3 e3){
		return new T3(e1, e2, e3);
	}
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy