Tagged Questions

A monad in programming is a composable computation description. Monads are an important construct in functional programming languages like Haskell.

learn more… | top users | synonyms (1)

164
votes
6answers
12k views

Large-scale design in Haskell?

What is a good way to design/structure large functional programs, especially in Haskell? I've been through a bunch of the tutorials (Write Yourself a Scheme being my favorite, with Real World Haskell ...
136
votes
7answers
9k views

Monad in plain English? (For the OOP programmer with no FP background)

In terms that an OOP programmer would understand (without any functional programming background), what is a monad? What problem does it solve and what are the most common places it's used? EDIT: To ...
135
votes
30answers
9k views

What is a monad?

Having briefly looked at Haskell recently I wondered whether anybody could give a brief, succinct, practical explanation as to what a monad essentially is? I have found most explanations I've come ...
81
votes
13answers
3k views

Pattern to avoid nested try catch blocks?

Consider a situation where I have three (or more) ways of performing a calculation, each of which can fail with an exception. In order to attempt each calculation until we find one that succeeds, I ...
79
votes
0answers
9k views

Can anyone explain Monads? [closed]

Possible Duplicate: What is a monad? I think I understand what 'Maybe Monads' are, but I'm not sure about the other types.
77
votes
10answers
6k views

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

There is a lot of talk about monads these days. I have read a few articles / blog posts, but I can't go far enough with their examples to fully grasp the concept. The reason is that monads are a ...
72
votes
3answers
12k views

A monad is just a monoid in the category of endofunctors, what's the problem? [closed]

Who first said A monad is just a monoid in the category of endofunctors, what's the problem? and on a less important note is this true and if so could you give an explanation (hopefully one ...
48
votes
7answers
3k views

Why are side-effects modeled as monads in Haskell?

Could anyone give some pointers on why the unpure computations in Haskell are modeled as monads? I mean monad is just an interface with 4 operations, so what was the reasoning to modeling ...
47
votes
18answers
2k views

Why Option[T]?

I am a beginner to functional programming and I have recently started studying Scala and I really love this language for the all goodies it provides like closures, pattern matching, currying etc. ...
35
votes
7answers
860 views

What is a monad in FP, in categorical terms?

Every time someone promises to "explain monads", my interest is piqued, only to be replaced by frustration when the alleged "explanation" is a long list of examples terminated by some off-hand remark ...
32
votes
2answers
1k views

mtl, transformers, monads-fd, monadLib, and the paradox of choice

Hackage has several packages for monad transformers: mtl: Monad transformer library transformers: Concrete functor and monad transformers monads-fd: Monad classes, using functional dependencies ...
27
votes
9answers
1k views

Monad theory and Haskell

Most tutorials seem to give a lot of examples of monads (IO, state, list and so on) and then expect the reader to be able to abstract the overall principle and then they mention category theory. I ...
26
votes
4answers
1k views

Monad equivalent in Ruby

What would an equivalent construct of a monad be in Ruby?
25
votes
3answers
648 views

Good examples of Not a Functor/Functor/Applicative/Monad?

While explaining to someone what a type class X is I struggle to find good examples of data structures which are exactly X. So, I request examples for: A type constructor which is not a Functor. A ...
25
votes
7answers
5k views

Use of Haskell state monad a code smell?

God I hate the term "code smell", but I can't think of anything more accurate. I'm designing a high-level language & compiler to Whitespace in my spare time to learn about compiler construction, ...
24
votes
3answers
872 views

Difference between State, ST, IORef, and MVar

I am working through Write Yourself a Scheme in 48 Hours (I'm up to about 85hrs) and I've gotten to the part about Adding Variables and Assignments. There is a big conceptual jump in this chapter, and ...
23
votes
5answers
794 views

ST Monad == code smell?

I'm working on implementing the UCT algorithm in Haskell, which requires a fair amount of data juggling. Without getting into too much detail, it's a simulation algorithm where, at each "step," a ...
23
votes
5answers
753 views

Monads as adjunctions

I've been reading about monads in category theory. One definition of monads uses a pair of adjoint functors. A monad is defined by a round-trip using those functors. Apparently adjunctions are very ...
22
votes
1answer
694 views

Criticize simple monad

I'm learning monads, this is my first working one (aside from the trivial monad). Feel free to criticize everything in it ruthlessly. I'm especially interested in "more idiomatic" and "more elegant" ...
21
votes
4answers
870 views

How do you identify monadic design patterns?

I my way to learn Haskell I'm starting to grasp the monad concept and starting to use the known monads in my code but I'm still having difficulties approaching monads from a designer point of view. In ...
21
votes
1answer
1k views

Monads vs. Arrows

I'm broadly familiar with the concepts of monads and arrows as used in functional programming. I also understand that they can be used to solve similar kinds of problems. However - I'm still a bit ...
21
votes
7answers
2k views

Creative uses of monads

I'm looking for creative uses of monads to learn from. I've read somewhere that monads have been used for example in AI, but being a monad newbie, I fail to see how. Please include a link to the ...
19
votes
4answers
687 views

Haskell: What monad did I just reinvent?

I just reinvented some monad, but I'm not sure which. It lets you model steps of a computation, so you can interleave the steps of numerous computations to find which one finishes first. {-# ...
19
votes
3answers
780 views

What happens to you if you break the monad laws?

Do the compiler or the more "native" parts of the libraries (IO or functions that have access to black magic and the implementation) make assumptions about these laws? Will breaking them cause the ...
19
votes
5answers
5k views

scala Iterable#map vs. Iterable#flatMap

What is the difference between the map and flatMap functions of Iterable?
18
votes
1answer
497 views

Is it possible to implement liftM2 in Scala?

In Haskell, liftM2 can be defined as: liftM2 :: (Monad m) => (a1 -> a2 -> r) -> m a1 -> m a2 -> m r liftM2 f m1 m2 = do x1 <- m1 x2 <- m2 return $ f x1 x2 I'd like to ...
18
votes
1answer
498 views

Why do we have map, fmap and liftM?

map :: (a -> b) -> [a] -> [b] fmap :: Functor f => (a -> b) -> f a -> f b liftM :: Monad m => (a -> b) -> m a -> m b Why do we have three different functions that ...
18
votes
4answers
432 views

Is “with” monadic?

Like many a foolhardy pioneer before me, I'm endeavoring to cross the trackless wasteland that is Understanding Monads. I'm still staggering through, but I can't help noticing a certain monad-like ...
18
votes
3answers
317 views

Relax ordering constraints in monadic computation

here is some food for thought. When I write monadic code, the monad imposes ordering on the operations done. For example, If I write in the IO monad: do a <- doSomething b <- ...
18
votes
5answers
1k views

Tutorial to disassemble the Haskell Cont monad?

This is how the Cont monad is defined: newtype Cont r a = Cont { runCont :: (a -> r) -> r } instance Monad (Cont r) where return a = Cont ($ a) m >>= k = Cont $ \c -> runCont ...
18
votes
4answers
1k views

When is it OK to use an IORef?

One thing that has always confused me is whether or not it's an okay time to use an IORef. Are there any guidelines that should be followed when deciding whether or not to use an IORef for a task? ...
18
votes
6answers
2k views

Evil use of Maybe monad and extension methods in C#?

I've been thinking about the null propagation problem in .NET, which often leads to ugly, repeated code like this: Attempt #1 usual code: string activeControlName = null; var activeForm = ...
17
votes
2answers
334 views

Folding, function composition, monads, and laziness, oh my?

I am puzzled. I can write this: import Control.Monad main = print $ head $ (foldr (.) id [f, g]) [3] where f = (1:) g = undefined and the output is 1. That makes sense, because it ...
17
votes
11answers
2k views

Monad in non-programming terms [closed]

Possible Duplicate: What is a monad? How would you describe a monad in non-programming terms? Is there some concept/thing outside of programming (outside of all programming, not just FP) ...
17
votes
6answers
2k views

Has anyone ever encountered a Monad Transformer in the wild?

In my area of business - back office IT for a financial institution - it is very common for a software component to carry a global configuration around, to log it's progress, to have some kind of ...
16
votes
3answers
298 views

Should I avoid using Monad fail?

I'm fairly new to Haskell and have been slowly getting the idea that there's something wrong with the existence of Monad fail. Real World Haskell warns against it's use ("Once again, we recommend that ...
16
votes
1answer
490 views

What is the name of this monad-like functional programming pattern?

I have occasionally encountered a pattern in code which resembles a monad but does not keep a consistent type across >>=. Here is the simplest example I could come up with: (First some ...
16
votes
4answers
996 views

Haskell: How to write interactive interpreter on top of a State monad?

We're working on a model filesystem that uses a state monad internally. We have a type class with operations like these: class Monad m => FS m where isDirectory :: Path -> m Bool children ...
16
votes
3answers
3k views

Why there is no something like IMonad<T> in upcoming .NET 4.0

... with all those new (and not so new if we count IEnumerable) monad-related stuff? interface IMonad<T> { SelectMany/Bind(); Return/Unit(); } That would allow to write functions that ...
15
votes
7answers
762 views

Why monads? How does it resolve side-effects?

I am learning Haskell and trying to understand Monads. I have 2 questions. From what I understand, Monad is just another typeclass that declares ways to interact with data inside "containers", ...
15
votes
1answer
423 views

How does ArrowLoop work? Also, mfix?

I'm fairly comfortable now with the rest of the arrow machinery, but I don't get how loop works. It seems magical to me, and that's bad for my understanding. I also have trouble understanding mfix. ...
15
votes
5answers
2k views

How do you make a generic memoize function in Haskell?

I've seen the other post about this, but is there a clean way of doing this in Haskell? As a 2nd part, can it also be done without making the function monadic?
14
votes
3answers
303 views

Monad transformer for progress tracking

I am looking for a monad transformer that can be used to track the progress of a procedure. To explain how it would be used, consider the following code: procedure :: ProgressT IO () procedure = task ...
14
votes
3answers
312 views

How do I organize my pure functions with my monadic actions idiomatically

I've decided today is the day I fix some of my pure functions that are unnecessarily running in a monadic action. Here's what I have. flagWorkDays :: [C.Day] -> Handler [WorkDay] flagWorkDays ...
14
votes
1answer
253 views

Haskell: How is join a natural transformation?

I can define a natural transformation in Haskell as: h :: [a] -> Maybe a h [] = Nothing h (x:_) = Just x and with a function k: k :: Char -> Int k = ord the naturality condition is met ...
14
votes
3answers
553 views

Using the Maybe Monad in “reverse” in Haskell

Let's say I have a number of functions: f -> Maybe a g -> Maybe a h -> Maybe a And I want to compose them in the following way: If f returns Nothing, compute g. If g returns Nothing, ...
14
votes
2answers
464 views

How to use (->) instances of Monad and confusion about (->)

At different questions I've found hints in comments concerning using (->) instances of Monads e.g. for realizing point-free style. As for me, this is a little too abstract. Ok, I've seen Arrow ...
14
votes
1answer
374 views

Is the `Monad ((,) w)` instance anywhere standard?

I use the pair spelling of Writer all the time, but I always have to instantiate myself: instance (Monoid w) => Monad ((,) w) where return x = (mempty, x) ~(w,x) >>= f = let (w', y) ...
14
votes
1answer
273 views

How practical is it to embed the core of a language with an effectful function space (like ML) into Haskell?

As Moggi proposed 20 years ago, the effectful function space -> of languages like ML can be decomposed into the standard total function space => plus a strong monad T to capture effects. A ...
14
votes
8answers
2k views

What is the compelling scenario for using Monads in C#

Let me state up front that I have an infantile understanding of Monads. I have read the various threads on Monads here and have done a few hours of study on the concept. I hardly feel comfortable with ...

1 2 3 4 5 9