Search Results

27
votes
13answers
3k views

What is a monad?

… explanation as to what a monad essentially is? I have found most explanations I' …
29
votes
12answers
3k views

Can anyone explain Monads?

I think I understand what 'Maybe Monads' are, but I'm not sure about the other types. …
6
votes
7answers
592 views

Creative uses of monads

… ads have been used for example in AI, but being a monad newbie, I fail to see how. …
5
votes
6answers
320 views

Some questions about monads in Haskell

Monad m => m t -> (t -> m u) -> m u …
26
votes
7answers
1k views

Help a C# developer understand: What is a monad?

… y the way, I know there are at least 3 "what is a monad" questions already on SO. However, I face the sam …
3
votes
4answers
437 views

Are continuations monads?

Can continuations be said to be monads? Are they a subset of monads or are they simply a way of implementing monads? Edit: Or maybe I got it wrong and monads is a more abs …
8
votes
7answers
1k views

Use of Haskell state monad a code smell?

… ng the entire code generation module in the state monad to handle this. … really try to eliminate/minimize use of the state monad, or is it a legitimate functional "design pattern …
3
votes
4answers
752 views

What are monads?

everyone keeps talking about monads and monadic style and Haskell. i can't find much information or tutorial on haskell monads. …
6
votes
3answers
255 views

How do I combine monads in Haskell?

… articularly, I need to be able to combine the CGI monad with the IO monad, but an example of how to combi … ne the IO monad with the Maybe monad might be even better... …
1
vote
3answers
112 views

Creating monads in haskell

… I want to create my own monad. This is what i wrote: … ata LeafConType a = LeafCon (a,Int,Int) instance Monad (LeafConType ) where return = LeafCon lc@(LeafCo … for `return' In the instance declaration for `Monad LeafConType' leafcon.hs:27:1: Occurs check: … `>>=' In the instance declaration for `Monad LeafConType' …
5
votes
5answers
221 views

What is the compelling scenario for using Monads in C#

… understand what a Monad is/does. … Monaducation is see a real world application of a Monad in C# (i.e. via a linq SelectMany() or somesuch) …
2
votes
4answers
287 views

Are there any good examples on how to use Haskell monad functions?

… Haskell monad functions are not easy to understand, where can I …
3
votes
2answers
258 views

Values inside monads, nested in data structures?

… to clumsily remove the inside values from the IO monad, until I got something like IO [ (Int, string, In … t) ] and then (from inside the IO monad) apply the pure functions. There is no easy pre-d … ing that would lift a whole data structure into a monad, turning all …
3
votes
2answers
91 views

looking for learning exercise: implement these monads

When learning about new programming subjects I usually follow a pattern: I read about it, I understand it, and then I code up a few examples to make sure I really get it. I've rea …
1
vote
3answers
217 views

Restricting a monad to a type class

… In Haskell, is there a way to restrict a monad … urn = always In the instance declaration for `Monad Distribution' … . Is there a way I can have a monad … on this monad? I tried: … instance Monad Distribution where (>>=) = bind ret … So it there a way to have a monad

1 2 3 4 5 21 next
15 30 50 per page