Fibers.MonadSourceMonadic and Applicative operators.
You can use them locally with following syntax:
let sum ta tb =
let open Monad in
let* x = ta in
let* y = tb in
return (x+y)Conforms to OCaml language manual for let-bindings operators extension.