Criticism
Haskell’s do notation is popular and ubiquitous.
However we shall not ignore that there are several problems.
Here we like to shed some light on aspects you may not have thought about, so far.
Didactics
The do notation hides functional details.
This is wanted in order to simplify writing imperative style code fragments.
The downsides are that:

  • Since do notation is used almost everywhere IO takes place, newcomers quickly believe that the do notation is necessary for doing IO,
  • Newcomers might think that IO is somehow special and non-functional, in contrast to the advertisement for Haskell being purely functional,
  • Newcomers might think that the order of statements determines the order of execution.

These misunderstandings let people write clumsy code like
instead of
or
dotext<-getLinereturntext
instead of
or
dotext<-readFile”foo”writeFile”bar”text
instead of
readFile”foo”>>=writeFile”bar”
.
The order of statements is also not the criterion for the evaluation order.
Also here only the data dependencies count.
See for instance
dox<-Just(3+5)y<-Just(5*7)return(x-y)
where 3+5 and 5*7 can be evaluated in any order, also in parallel.
Or consider
dox<-Just(3+5)y<-Nothingreturn(x-y)
where 3+5 is probably not evaluated at all, because its result is not necessary to find out that the entire do describes a Nothing.
Library design
Unfortunately, the do notation is so popular that people write more things with monads than necessary. See for instance the Binary package. It contains the Put monad, which in principle has nothing to do with a monad.
All “put” operations have the monadic result ().
In fact it is a Writer monad using the Builder type, and all you need is just the Builder monoid.
Even more unfortunate, the applicative functors were introduced to Haskell’s standard libraries only after monads and arrows, thus many types are instances of Monad and Arrow classes, but not as many are instances of Applicative. There is no special syntax for applicative functors because it is hardly necessary.
You just write
dataHeader=HeaderCharIntBoolreadHeader::GetHeaderreadHeader=liftA3Headergetgetget
or
readHeader=Header<$>get<*>get<*>get
Not using monads, along with the do notation, can have advantages.
Consider a generator of unique identifiers. First you might think of a State monad which increments a counter each time an identifier is requested.
run::StateInta->arunm=evalStatem0newId::StateIntIntnewId=don<-getmodifysuccreturnnexample::(Int->Int->a)->aexamplef=run$dox<-newIdy<-newIdreturn(fxy)
If you are confident that you will not need the counter state at the end and
that you will not combine blocks of code using the counter
(where the second block needs the state at the end of the first block),
you can enforce a more strict scheme of usage. The following is like a Reader monad, where we call local on an incremented counter for each generated identifier. Alternatively you can view it as Continuation monad.
newtypeTa=T(Int->a)run::Ta->arun(Tf)=f0newId::(Int->Ta)->TanewIdf=T$\i->casefiofTg->g(succi)example::(Int->Int->Ta)->aexamplef=run$newId$\a->newId$\b->fab
This way users cannot accidentally place a return
somewhere in a do block where it has no effect.
Safety
This page addresses an aspect of Haskell style, which is to some extent a matter of taste. Just pick what you find appropriate for you and ignore the rest.
With do notation we have kept alive a dark side of the C programming language:
The silent neglect of return values of functions.
In an imperative language it is common to return an error code and provide the real work by side effects.
In Haskell this cannot happen, because functions have no side effects.
If you ignore the result of a Haskell function, the function will not even be evaluated.
The situation is different for IO:
While processing the IO, you might still ignore the contained return value.
You can write
and thus silently ignore the result of getLine.
The same applies to
doSystem.Cmd.system”echo foo >bar”
where you ignore the ExitCode.
Is this behaviour wanted?
There are possibilities to explicitly ignore return values in safety oriented languages
(e.g. EVAL in Modula-3).
Haskell does not need this, because you can already write
do_<-System.Cmd.system”echo foo >bar”return()
Writing _<- should always make you cautious whether ignoring the result is the right thing to do.
The possibility for silently ignoring monadic return values is not entirely the fault of the do notation.
It would suffice to restrict the type of the (>>) combinator to
This way, you can omit _<- only if the monadic return value has type ().
New developments:

  • GHC since version 6.12 emits a warning when you silently ignore a return value
  • There is a new function called void that makes ignoring of return values explicit: GHC ticket 3292

Happy with less sugar
Additional combinators
Using the infix combinators for writing functions simplifies the addition of new combinators.
Consider for instance a monad for random distributions.
This monad cannot be an instance of MonadPlus,
because there is no mzero (it would be an empty list of events, but their probabilities do not sum up to 1)
and mplus is not associative because we have to normalize the sum of probabilities to 1.
Thus we cannot use standard guard for this monad.
However we would like to write the following:
dof<-familyguard(existsBoyf)returnf
Given a custom combinator which performs a filtering with subsequent normalization called (>>=?)::Distributiona->(a->Bool)->Distributiona
we can rewrite this easily:
Note that the (>>=?) combinator introduces the risk of returning an invalid distribution (empty list of events),
but it seems that we have to live with that problem.
Alternative combinators
If you are used to writing monadic functions using infix combinators (>>) and (>>=)
you can easily switch to a different set of combinators.
This is useful when there is a monadic structure that does not fit into the current Monad type constructor class, where the monadic result type cannot be constrained.
This is e.g. useful for the Set data type, where the element type must have a total order.
Useful applications
It shall be mentioned that the do sometimes takes the burden away from you of writing boring things.
E.g. in
getRight::Eitherab->MaybebgetRighty=doRightx<-yreturnx
a case on y is included, which calls fail if y is not a Right (i.e. Left), and thus returns Nothing in this case.
Also the mdo notation proves useful, since it maintains a set of variables for you in a safe manner.
Compare
mdox<-fxyzy<-gxyzz<-hxyzreturn(x+y+z)
and
mfix(\~(~(x,y,z),_)->dox<-fxyzy<-gxyzz<-hxyzreturn((x,y,z),x+y+z))
See also