/** A generic class for pairs.
*
* <p><b>This is NOT part of any supported API.
* If you write code that depends on this, you do so at your own risk.
* This code and its internal interfaces are subject to change or
* deletion without notice.</b>
*/
public class Pair<A, B>
{
public final A fst;
public final B snd;
public Pair(A fst, B snd)
{
this.fst = fst;
this.snd = snd;
}