Module Printable.Either3

Parameters

module Base1 : S
module Base2 : S
module Base3 : S

Signature

type t = [
  1. | `Left of Base1.t
  2. | `Middle of Base2.t
  3. | `Right of Base3.t
]
val equal : t -> t -> Ppx_deriving_runtime.bool
val compare : t -> t -> Ppx_deriving_runtime.int
val hash : t -> int
val tag : 'a -> 'b
val arbitrary : unit -> 'a
val pretty : unit -> t -> Pretty.doc
val show : [< `Left of Base1.t | `Middle of Base2.t | `Right of Base3.t ] -> string
val name : unit -> string
val printXml : 'a BatInnerIO.output -> [< `Left of Base1.t | `Middle of Base2.t | `Right of Base3.t ] -> unit
val to_yojson : [< `Left of Base1.t | `Middle of Base2.t | `Right of Base3.t ] -> Yojson.Safe.t
val relift : [< `Left of Base1.t | `Middle of Base2.t | `Right of Base3.t ] -> [> `Left of Base1.t | `Middle of Base2.t | `Right of Base3.t ]