Functor Functor_test.Either

module Either: 
functor (Config : sig
type t 
end) -> sig .. end
Parameters:
Config : sig type t end

type 'a t = 
| Left of Config.t
| Right of 'a
val fmap : ('a -> 'b) -> 'a t -> 'b t