blob: e4513886a64e9ea75a32028a4ecdab3050523b64 [file] [log] [blame]
package joshua.util;
/**
* Memory-efficient implementation of an integer tuple.
*
* @author Lane Schwartz
*/
public final class IntegerPair {
public final int first;
public final int second;
public IntegerPair(final int first, final int second) {
this.first = first;
this.second = second;
}
}