Module Fut.Syntax

Future syntax.

val let* : 'a t -> ('a -> 'b t) -> 'b t

let* is bind.

val and* : 'a t -> 'b t -> ('a * 'b) t

and* is pair.

val let+ : 'a t -> ('a -> 'b) -> 'b t

let+ is map.

val and+ : 'a t -> 'b t -> ('a * 'b) t

and+ is pair.