SomeNet
/
public repos
/
pub
/
jan
/
sbc.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
[XVSM] Waiters, Cooks and Pizzerias can be parameterized with a Space port. Group...
[pub/jan/sbc.git]
/
src
/
main
/
java
/
at
/
ac
/
tuwien
/
sbc
/
valesriegler
/
common
/
Tuple.java
1
package at.ac.tuwien.sbc.valesriegler.common;
2
3
4
public class Tuple<T> {
5
public final T snd;
6
public final T fst;
7
8
public Tuple(T fst, T snd) {
9
this.fst = fst;
10
this.snd = snd;
11
}
12
}