org.unlaxer.util.Tuple2 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tinyExpression Show documentation
Show all versions of tinyExpression Show documentation
TinyExpression implemented with Unlaxer
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;
}
}