com.github.basking2.sdsai.itrex.util.TwoTuple Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdsai-itrex Show documentation
Show all versions of sdsai-itrex Show documentation
An S-Expression inspiried library focused on iterators.
package com.github.basking2.sdsai.itrex.util;
public class TwoTuple {
public L l;
public R r;
public TwoTuple(final L l, final R r) {
this.l = l;
this.r = r;
}
public L getL() {
return l;
}
public void setL(L l) {
this.l = l;
}
public R getR() {
return r;
}
public void setR(R r) {
this.r = r;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy