another useful tuple

This commit is contained in:
Terence Parr 2012-02-13 09:15:05 -08:00
parent dee579a68f
commit f8285bcca0
1 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,10 @@
package org.antlr.v4.misc;
public class Triple<A,B,C> extends Pair<A,B> {
public C c;
public Triple(A a, B b, C c) {
super(a,b);
this.c = c;
}
}