Base.Either
val hash_fold_t :
(Hash.state -> 'a -> Hash.state) ->
(Hash.state -> 'b -> Hash.state) ->
Hash.state ->
('a, 'b) t ->
Hash.state
include Sexplib0.Sexpable.S2 with type ('f, 's) t := ('f, 's) t
val t_of_sexp :
(Sexplib0.Sexp.t -> 'a) ->
(Sexplib0.Sexp.t -> 'b) ->
Sexplib0.Sexp.t ->
('a, 'b) t
val sexp_of_t :
('a -> Sexplib0.Sexp.t) ->
('b -> Sexplib0.Sexp.t) ->
('a, 'b) t ->
Sexplib0.Sexp.t
val t_sexp_grammar :
'f Sexplib0.Sexp_grammar.t ->
's Sexplib0.Sexp_grammar.t ->
('f, 's) t Sexplib0.Sexp_grammar.t
include Invariant.S2 with type ('a, 'b) t := ('a, 'b) t
val invariant : ('a -> unit) -> ('b -> unit) -> ('a, 'b) t -> unit
val value : ('a, 'a) t -> 'a
val iter : ('a, 'b) t -> first:('a -> unit) -> second:('b -> unit) -> unit
val value_map : ('a, 'b) t -> first:('a -> 'c) -> second:('b -> 'c) -> 'c
module type Focused = sig ... end
val is_first : (_, _) t -> bool
val is_second : (_, _) t -> bool
val first : 'f -> ('f, _) t
first
and second
are First.return
and Second.return
.
val second : 's -> (_, 's) t