Just reading through someone else’s code from a while back - have come across ‘>>’ and I can’t figure out if this is a monad or something deprecated in ocaml. Can anyone point me to a description? Thanks.
eg:
Lwt_io.flush w >>
return …
Just reading through someone else’s code from a while back - have come across ‘>>’ and I can’t figure out if this is a monad or something deprecated in ocaml. Can anyone point me to a description? Thanks.
eg:
Lwt_io.flush w >>
return …
I’ve seen this operator in the Lwt API in the documentation of Ocsigen : https://ocsigen.org/lwt/3.1.0/api/Ppx_lwt
Excellent, thanks - found the reason in https://github.com/ocsigen/lwt/issues/495