Tagged Questions
Arrows (Freyd-categories) are a generalization of Monads.
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 ...
19
votes
2answers
915 views
Help Understanding Arrows in Haskell
I've been trying to get a grip on arrows, since they're the basis of most FRP implementations. I think I understand the basic idea - they're related to monads but store static information at each ...
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. ...
13
votes
4answers
715 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 ...
11
votes
2answers
455 views
How does the Haskell rec keyword work?
In arrow do notation, you can use the rec keyword to write recursive definitions. So for example:
rec
name <- function -< input
input <- otherFunction -< name
How can this ever ...
10
votes
3answers
818 views
exposition on arrows in haskell
What would be a good place to go to understand arrows? Ideally, I am just looking for some place with a concise definition with motivation from some good examples, something similar to Wadler's ...
9
votes
3answers
569 views
Where can I get a good tutorial about how to use arrows?
Hy folks!
I tried to learn the meaning of arrows, but didn't understood them. I used the Wikibooks tutorial. I think Wikibook's probplem is mainly the fact, that it seems to be written for somebody ...
9
votes
1answer
645 views
Haskell: Am I misunderstanding how Arrows may be used?
I wrote some toy code to play with the concept of Arrows. I wanted to see if I could write an Arrow which encoded the concept of a stateful function - giving a different value after different calls.
...
8
votes
2answers
297 views
Would a type class “between” Category and Arrow make sense?
Often you have something like an Applicative without pure, or something like a Monad, but without return. The semigroupoid package covers these cases with Apply and Bind. Now I'm in a similar ...
7
votes
1answer
165 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 ...
7
votes
1answer
230 views
Quick question about Arrow operators
Say I've got f :: u -> v -> w and g :: x -> y -> z. What I want is h :: (u,x) -> (v,y) -> (w,z).
So I could go about this manually:
h (u,x) (v,y) = (f u v, g x y)
But where's ...
7
votes
1answer
263 views
HXT: Left-Factoring Nondeterministic Arrows?
I'm trying to come to terms with Haskell's XML Toolbox (HXT) and I'm hitting a wall somewhere, because I don't seem to fully grasp arrows as a computational tool.
Here's my problem, which I hoped to ...
6
votes
1answer
135 views
What do the special brackets (| … |) desugar into?
I've read the arrow notation documentation page, but it's not entirely clear to me what the "pipe brackets" used under "7.10.3. Defining your own control structures" desugar into.
Given the example ...
6
votes
1answer
164 views
Can you define an operator (***) in F#?
I'm working on Arrows in F# and I wanted to create a *** operator. I note, however, that (***), the necessary way to express an operator in a function definition, overlaps with the F# block comment ...
5
votes
1answer
88 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. ...
5
votes
3answers
162 views
Comparing list length with arrows
Inspired by Comparing list length
If I want to find the longest list in a list of lists, the simplest way is probably:
longestList :: [[a]] -> [a]
longestList = maximumBy (comparing length)
A ...
5
votes
1answer
159 views
Getting Data from a Simple XML
I am trying to extract some data from an XML input with 6 lines, using HXT. I want to keep HXT, too, because of the Curl integration and because I have other XML files with thousands of lines, later.
...
4
votes
1answer
119 views
Simple exercises to learn Netwire? [closed]
Haskell wiki > Netwire has some good introductory material to Netwire, but now (as a hobbyist Haskeller) I'm interested in something more. What kinds of simple exercises would be beneficial in order ...
4
votes
1answer
174 views
Where is the source code of GHC's language extension: “Arrows”?
Where can i find the source code, that hides behind the language pragma
{-# LANGUAGE Arrows #-}
I've read the according papers (like Paterson, A New Notation for Arrows) , so what theoretically ...
4
votes
2answers
279 views
Generic type transformations in Haskell
I'm trying to write an arrow transformer that takes regular functions, and turns them into computations on abstract values. If we have a "source" arrow,
f :: Int -> Int
f x = x + 1
then the goal ...
3
votes
3answers
214 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 ...
3
votes
1answer
213 views
how to mix applicative functors and arrows
i read on Andrew Birkett’s blog Applicative arrows for XML &&& return to pure that we could mix arrows and applicative functors.
I tried it by my own but i don't have what i expect.
i ...
3
votes
1answer
131 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 ...
3
votes
2answers
158 views
How can I define a filter function for arrows?
I'm currently reading through the paper Programming with Arrows by John Hughes
and I'm already stumped on the first exercise, in section 2.5, on pg 20.
We have the Arrow and ArrowChoice typeclasses ...
3
votes
1answer
204 views
Infinite recursion in Haskell
This question is essentially a duplicate of Debugging infinite loops in Haskell programs with GHCi. The author there solved it manually, though I'd like to know other solutions.
(my particular ...
3
votes
1answer
178 views
Collapse arrow to list
I'm having some problems with HXT, though I suspect it's just something I'm missing about arrows.
I have an XML structure like
<str name="field1">value</str>
<lst ...
2
votes
1answer
17 views
Keyboard Navigation from input field skipping adding a class
I have an input field and a div with four operating systems. When the cursor is in the input field and you press the down arrow, it should go down cycling through each OS div when you press down. The ...
2
votes
1answer
172 views
Counting and filtering Arrow for HXT
I'm trying to parse an XML, but I want to filter and extract only a determinate number of children from a given node. For example:
<root>
<node id="a" />
<node id="b" />
...
2
votes
2answers
358 views
simple putStrLn in Haskell/Yampa with arrows syntax
i'm using Haskell with the Yampa FRP library which uses the arrows language extension.
how can i do a simple putStrLn in a SF?
mySF = proc x -> do
y <- identity -< x*x
putStrLn ...
1
vote
2answers
27 views
How should I proceed to do a interactive program with drag feature and graph arrows
I'm doing a college project which I must finish in 3 months. And I have 8 hours a week to spend in that project.
The project consists in doing a graphical interface that shows many rectangles next ...
1
vote
1answer
66 views
How to deal with nested records and listA arrows
i have the following situation. I get week datas from probes. Datas are collected in several xml files (inline in the code below). I need to concat these in one file. Though i aggregate them in one ...
1
vote
3answers
114 views
How does a pair unify with the types of the Arrow functions
Some of the functions for working with Arrows are quite handy to use on pairs. But I can't understand how the types of these functions unify with a pair. In general, I find the types of the Arrow ...
0
votes
2answers
46 views
Automatically positioning arrows on slideshow
I'm currently coding a jQuery slideshow effect and need a bit of help.
I have all of the sideshow functionality working properly, my only problem is that I want to have my navigation arrows to be ...