17 lines
184 B
Plaintext
Raw Normal View History

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