export type Pair<X, Y> = {
  fst: X;
  snd: Y;
};
