module EitherString: Either(sig
Either
(
sig
type t = string
string
end)
end
)
type 'a t =
'a
|
Left of Config.t
Config.t
Right of 'a
val fmap : ('a -> 'b) -> 'a t -> 'b t
('a -> 'b) -> 'a t -> 'b t