export class Pair { public readonly left: L; public readonly right: R; constructor(left: L, right: R) { this.left = left; this.right = right; } }