Source file dune_either.ml

1
2
3
4
5
module Either = struct
  type ('a, 'b) t =
    | Left of 'a
    | Right of 'b
end