JavaCompilerCore/resources/bytecode/javFiles/Pair.jav

17 lines
165 B
Plaintext
Raw Normal View History

import java.util.Vector;
import java.lang.Boolean;
import java.lang.Object;
2024-03-11 15:16:10 +00:00
class Pair<T, U> {
T x;
U y;
2024-03-11 15:16:10 +00:00
fst () {
return x;
}
2024-03-11 15:16:10 +00:00
snd () {
return y;
}
}