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