![JAR search and dependency download from the Maven repository](/logo.png)
org.unlaxer.util.Tuple2 Maven / Gradle / Ivy
package org.unlaxer.util;
public class Tuple2{
public final T _1;
public final U _2;
public Tuple2(T t, U u) {
super();
this._1 = t;
this._2 = u;
}
public U right(){
return _2;
}
public T left(){
return _1;
}
public U _2(){
return _2;
}
public T _1(){
return _1;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy