Printable.EitherConf
module Conf : EitherConf
module Base1 : S
module Base2 : S
type t = [
| `Left of Base1.t
| `Right of Base2.t
]
val equal : t -> t -> Ppx_deriving_runtime.bool
val compare : t -> t -> Ppx_deriving_runtime.int
val hash : t -> int
include module type of struct include Std end
Default dummy definitions.
Include as the first thing to avoid these overriding actual definitions.
val tag : 'a -> 'b
val arbitrary : unit -> 'a
val pretty : unit -> t -> Pretty.doc
val show : [< `Left of Base1.t | `Right of Base2.t ] -> string
val name : unit -> string
val printXml : 'a BatInnerIO.output -> [< `Left of Base1.t | `Right of Base2.t ] -> unit
val to_yojson : [< `Left of Base1.t | `Right of Base2.t ] -> Yojson.Safe.t
val relift : [< `Left of Base1.t | `Right of Base2.t ] -> [> `Left of Base1.t | `Right of Base2.t ]