One_or_two
Simple container of one of two values of a given type.
module Stable : sig ... end
val to_yojson : ( 'a -> Yojson.Safe.t ) -> 'a t -> Yojson.Safe.t
val of_yojson :
( Yojson.Safe.t -> 'a Ppx_deriving_yojson_runtime.error_or ) ->
Yojson.Safe.t ->
'a t Ppx_deriving_yojson_runtime.error_or
val hash_fold_t :
( Ppx_hash_lib.Std.Hash.state -> 'a -> Ppx_hash_lib.Std.Hash.state ) ->
Ppx_hash_lib.Std.Hash.state ->
'a t ->
Ppx_hash_lib.Std.Hash.state
val length : 'a t -> int
val to_list : 'a t -> 'a list
val to_numbered_list : 'a t -> (int * 'a) list
val group_sequence : 'a Core_kernel.Sequence.t -> 'a t Core_kernel.Sequence.t
val group_list : 'a list -> 'a t list
val iter : 'a t -> f:( 'a -> unit ) -> unit
val fold : 'a t -> init:'accum -> f:( 'accum -> 'a -> 'accum ) -> 'accum
val fold_until :
init:'b ->
f:( 'b -> 'a -> ( 'b, 'final ) Core_kernel.Continue_or_stop.t ) ->
finish:( 'b -> 'final ) ->
'a t ->
'final
module Deferred_result : sig ... end
module Deferred : sig ... end
module Option : sig ... end
module Or_error : sig ... end
val gen :
'a Core_kernel.Quickcheck.Generator.t ->
'a t Core_kernel.Quickcheck.Generator.t