package base

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type ('a, 'b) t =
  1. | Left of 'a
  2. | Right of 'b
  3. | Both of 'a * 'b
val compare : ('a -> 'a -> int) -> ('b -> 'b -> int) -> ('a, 'b) t -> ('a, 'b) t -> int
val hash_fold_t : (Hash.state -> 'a -> Hash.state) -> (Hash.state -> 'b -> Hash.state) -> Hash.state -> ('a, 'b) t -> Hash.state
include Sexpable.S2 with type ('a, 'b) t := ('a, 'b) t
val t_of_sexp : (Sexp.t -> 'a) -> (Sexp.t -> 'b) -> Sexp.t -> ('a, 'b) t
val sexp_of_t : ('a -> Sexp.t) -> ('b -> Sexp.t) -> ('a, 'b) t -> Sexp.t