forked from jasder/antlr
another useful tuple
This commit is contained in:
parent
dee579a68f
commit
f8285bcca0
|
@ -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;
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue