2015-11-11 20:20:04 -08:00
|
|
|
|
// onjava/Tuple2.java
|
2015-11-14 16:18:05 -08:00
|
|
|
|
// <20>2016 MindView LLC: see Copyright.txt
|
2015-11-15 15:51:35 -08:00
|
|
|
|
// We make no guarantees that this code is fit for any purpose.
|
|
|
|
|
// Visit http://mindviewinc.com/Books/OnJava/ for more book information.
|
2015-11-11 20:20:04 -08:00
|
|
|
|
package onjava;
|
|
|
|
|
|
|
|
|
|
public class Tuple2<A, B> {
|
|
|
|
|
public final A _1;
|
|
|
|
|
public final B _2;
|
|
|
|
|
public Tuple2(A a, B b) { _1 = a; _2 = b; }
|
|
|
|
|
public String rep() { return _1 + ", " + _2; }
|
|
|
|
|
@Override
|
|
|
|
|
public String toString() {
|
|
|
|
|
return "(" + rep() + ")";
|
|
|
|
|
}
|
|
|
|
|
}
|