Module Bonsai_private_base.Value
include Applicative.S with type 'a t := 'a t
val return : here:lexing_position -> 'a -> 'a tval map : here:lexing_position -> 'a t -> f:('a -> 'b) -> 'b tval both : here:lexing_position -> 'a t -> 'b t -> ('a * 'b) tval (<*>) : here:lexing_position -> ('a -> 'b) t -> 'a t -> 'b tval (<*) : here:lexing_position -> 'a t -> Base.unit t -> 'a tval (*>) : here:lexing_position -> Base.unit t -> 'a t -> 'a tval (>>|) : here:lexing_position -> 'a t -> ('a -> 'b) -> 'b tval apply : here:lexing_position -> ('a -> 'b) t -> 'a t -> 'b tval map2 : here:lexing_position -> 'a t -> 'b t -> f:('a -> 'b -> 'c) -> 'c tinclude Import.Mapn with type 'a t := 'a t
val map3 :
here:lexing_position ->
'a1 t ->
'a2 t ->
'a3 t ->
f:('a1 -> 'a2 -> 'a3 -> 'b) ->
'b tval map4 :
here:lexing_position ->
'a1 t ->
'a2 t ->
'a3 t ->
'a4 t ->
f:('a1 -> 'a2 -> 'a3 -> 'a4 -> 'b) ->
'b tval map5 :
here:lexing_position ->
'a1 t ->
'a2 t ->
'a3 t ->
'a4 t ->
'a5 t ->
f:('a1 -> 'a2 -> 'a3 -> 'a4 -> 'a5 -> 'b) ->
'b tval map6 :
here:lexing_position ->
'a1 t ->
'a2 t ->
'a3 t ->
'a4 t ->
'a5 t ->
'a6 t ->
f:('a1 -> 'a2 -> 'a3 -> 'a4 -> 'a5 -> 'a6 -> 'b) ->
'b tval map7 :
here:lexing_position ->
'a1 t ->
'a2 t ->
'a3 t ->
'a4 t ->
'a5 t ->
'a6 t ->
'a7 t ->
f:('a1 -> 'a2 -> 'a3 -> 'a4 -> 'a5 -> 'a6 -> 'a7 -> 'b) ->
'b tval cutoff :
here:lexing_position ->
added_by_let_syntax:bool ->
'a t ->
equal:('a -> 'a -> bool) ->
'a tval of_incr : here:lexing_position -> 'a Ui_incr.t -> 'a tval return_lazy : here:lexing_position -> 'a Core.Lazy.t -> 'a tval return_exn : here:lexing_position -> exn -> 'a tval transpose_opt : 'a t option -> 'a option t