In the Haskell Performance Resource wiki-section, the not further explained recommendation is given to
- Use strict returns (
return $! ...) unless you absolutely need them lazy.
Why is that a good thing to do? When exactly is the ...-expression (Whnf-)forced?
Given the "Left identity" monad-law and the definition
f $! x = x `seq` f x
I can rewrite (in do-notation`):
do x' <- return $! x
f x'
to
do x' <- x `seq` return x
f x'
But it seems I can't get to
do f $! x
PS: If the BangPatterns-extension is available, is
do !x' <- return x
f x'
semantically the same as the first do-expression given above?