Is there any easy way to trace the evaluation of a List-comprehension in Haskell? They are nicely compact, but that can also make them difficult to debug.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
I would use
|
|||||||||||
|
|
List comprehension is rather concise, and usually easy to comprehend. If you are confused why a particular element doesn't show up in the result you should be able to test it by hand. Same thing if a element is showing up that you don't expect. I've never needed any more debugging than GHCi, but if that answer doesn't satisfy you... List comprehension is just a short-hand for the List monad. If you expand the list comprehension into |
|||
|
|