8
votes
4answers
260 views

What can Arrows do that Monads can't?

Arrows seem to be gaining popularity in the Haskell community, but it seems to me like Monads are more powerful. What is gained by using Arrows? Why can't Monads be used instead?
3
votes
1answer
104 views

Giving parameters to arrow function in Haskell

I have an XML file with some data. This file has a description of columns and the data itself. I can read column names, but I can't read data because I do not understand how to give this row names to ...
11
votes
3answers
721 views

Computation Constructs (Monads, Arrows, etc.)

I have become rather interested in how computation is modeled in Haskell. Several resources have described monads as "composable computation" and arrows as "abstract views of computation". I've never ...
5
votes
1answer
177 views

Arrows/HXT and Type Signatures

I am trying to learn Arrows in Haskell, so I am writing a simple application with the arrow based HXT library for XML. The examples in the HXT wikis and tutorials forgo function type signatures. ...
7
votes
1answer
702 views

Are there monads that can be used like an automaton?

I'm writing a stream transformer from some Input data type to an Output data type. Input is made by the user, so there is some time between the events. Because each input requires some resource ...
5
votes
3answers
699 views

Using monads, monoids, functors and arrows in practice

I recently ran into this post about useful resources for different aspects of functional programming, such as monads and monoids, etc. But the question is - what use can an average programmer make ...
5
votes
1answer
239 views

Calling an IO Monad inside an Arrow

Perhaps I'm going about this the wrong way, but I'm using HXT to read in some vertex data that I'd like to use in an array in HOpenGL. Vertex arrays need to be a Ptr which is created by calling ...
17
votes
1answer
880 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. ...
32
votes
1answer
3k 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 ...
17
votes
4answers
1k views

Resources for learning Monads, Functors, Monoids, Arrows etc

Can you people please suggest some good books / weblinks from where I can get to learn about above mentioned concepts? (Please note that I am a Java programmer and have NO prior experience with ...