c-cube/ocaml-containers

alias `Infix` with `Syntax` everywhere, deprecate `Infix`

c-cube opened this issue · 2 comments

seems like the trend is using Syntax (e.g in lwt), and it's more accurate than Infix for the new let operators.

In Lwt, the module Infix still exists and is for the infix operator like >>=. The module Syntax contains let* and other. Currently the monadic let bindings are in the module Infix, but we can have a separate module Syntax for them.

good point.