export class Tuple2 { constructor(a : A, b : B) { this.a = a; this.b = b; } a : A; b : B; }