Syntax.LetMonadic bindings operators.
This operators allows to write
let* r = computation x in bodyinstead of the old infix style
computation x >>= fun r -> bodyThe let* and and* operators stand for the monad part of the binding operators interface and let+ with and+ stand for the applicative part of the binding operators interface.