Advertisement
Guest User

Untitled

a guest
Dec 13th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. public class Tuple<X, Y> {
  2. public final X x;
  3. public final Y y;
  4. public Tuple(X x, Y y) {
  5. this.x = x;
  6. this.y = y;
  7. }
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement