package ppx_expect

  1. Overview
  2. Docs
type 'a t =
  1. | Exact of Base.string
  2. | Output
  3. | Pretty of 'a
  4. | Unreachable
val sexp_of_t : ('a -> Sexplib0.Sexp.t) -> 'a t -> Sexplib0.Sexp.t
include Base.Exported_for_specific_uses.Ppx_compare_lib.Comparable.S1 with type 'a t := 'a t
val compare : ('a -> 'a -> int) -> 'a t -> 'a t -> int
include Base.Exported_for_specific_uses.Ppx_compare_lib.Equal.S1 with type 'a t := 'a t
val equal : ('a -> 'a -> bool) -> 'a t -> 'a t -> bool
val map_pretty : 'a t -> f:('a -> 'b) -> 'b t