Make.MonadImport the non-traced modules as-is
include Bare_sigs.Monad.Smodule Lwt_syntax : sig ... endSyntax module for Lwt. This is intended to be opened locally in functions which use Lwt for control-flow. Within the scope of this module, the code can include binding operators, leading to a let-style syntax.
module Option_syntax : sig ... endSyntax module for Option. This is intended to be opened locally in functions which use option for control-flow. Within the scope of this module, the code can include binding operators, leading to a let-style syntax.
module Result_syntax : sig ... endSyntax module for Result. This is intended to be opened locally in functions which use result for control-flow. Within the scope of this module, the code can include binding operators, leading to a let-style syntax.
module Lwt_option_syntax : sig ... endSyntax module for Lwt+Option. This is intended to be opened locally in functions which use Lwt and option for control-flow. Within the scope of this module, the code can include binding operators, leading to a let-style syntax.
module Lwt_result_syntax : sig ... endSyntax module for Lwt+Result. This is intended to be opened locally in functions which use Lwt and result for control-flow. Within the scope of this module, the code can include binding operators, leading to a let-style syntax.
module Traced_result_syntax : sig ... endmodule Lwt_traced_result_syntax : sig ... end