vote up 2 vote down star

Haskell monad functions are not easy to understand, where can I find usage examples?

flag

4 Answers

vote up 1 vote down

You mean the functions with names like fooM and fooM_? You can understand them better possibly by reading their source code, or when you write a do-expression, you could think if that can be expressed with a relevant fooM-function.

You could also take a look at this question.

link|flag
vote up 3 vote down

I wrote a case study called "Anatomy of a New Monad". Is this what you meant?

link|flag
vote up 2 vote down

The answer I was looking for is: [A tour of the Haskell monad functions][1]

But I'm still looking for something similar for the non standard monads.

[1]: http://members.chello.nl/hjgtuyl/tourdemonad.html A tour of the Haskell monad functions

link|flag
vote up 1 vote down

The new O'Reilly book Real World Haskell has some good chapters on monads, which include the kind of wacky ad hoc user-defined abstract monad function stuff you seem to be looking for.

link|flag
You can find that book here: book.realworldhaskell.org/read (Saving you a trip to Google :-) – Magnus Jan 17 at 9:56

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.