sig
  type ('l, 'r) t = Left of '| Right of 'r
  val _Left : '-> ('a, 'b) Either.t
  val _Right : '-> ('b, 'a) Either.t
  val bind : ('-> ('p, 'b) t) -> ('p, 'a) t -> ('p, 'b) t
  val pure : '-> ('p, 'a) t
  val ap : ('p, '-> 'b) t -> (unit -> ('p, 'a) t) -> ('p, 'b) t
  val map : ('-> 'b) -> ('p, 'a) t -> ('p, 'b) t
  val ( >|= ) : ('p, 'a) t -> ('-> 'b) -> ('p, 'b) t
  val replace : '-> ('p, 'b) t -> ('p, 'a) t
  val void : ('p, 'a) t -> ('p, unit) t
  val ap' : ('p, '-> 'b) t -> ('p, 'a) t -> ('p, 'b) t
  val ( <*> ) : ('p, '-> 'b) t -> ('p, 'a) t -> ('p, 'b) t
  val ( <~> ) : ('p, '-> 'b) t -> (unit -> ('p, 'a) t) -> ('p, 'b) t
  val discard_left : ('p, 'a) t -> (unit -> ('p, 'b) t) -> ('p, 'b) t
  val discard_right : ('p, 'a) t -> (unit -> ('p, 'b) t) -> ('p, 'a) t
  val repeat : int -> ('p, 'a) t -> ('p, 'a list) t
  val repeat_ : int -> ('p, 'a) t -> ('p, unit) t
  val forever : ('p, 'a) t -> ('p, 'b) t
  val ( >>= ) : ('p, 'a) t -> ('-> ('p, 'b) t) -> ('p, 'b) t
  val join : ('p, ('p, 'a) t) t -> ('p, 'a) t
  val mcompose : ('-> ('p, 'c) t) -> ('-> ('p, 'b) t) -> '-> ('p, 'c) t
  val bimap :
    ('-> 'b) -> ('-> 'd) -> ('a, 'c) Either.t -> ('b, 'd) Either.t
  val fold : ('-> 'b) -> ('-> 'b) -> ('a, 'c) Either.t -> 'b
  val swap : ('a, 'b) Either.t -> ('b, 'a) Either.t
  val maybe_left : ('a, 'b) Either.t -> 'a option
  val maybe_right : ('a, 'b) Either.t -> 'b option
end