Arrows (Freyd-categories) are a generalization of Monads.

learn more… | top users | synonyms

1
vote
3answers
38 views

(Down) Arrow Box with CSS

I want to do what this arrow box does, but instead of an arrow pointing to the right, I want it to point downward. I've tried something like this: jsfiddle link here #triangle-down { width: 0; ...
6
votes
2answers
161 views

Arrow Box with CSS

How can I make this box in CSS? I've seen a few tutorials that teach how to create boxes with arrows, however, in my case, none of those tutorials are suitable.
8
votes
4answers
257 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
80 views

Do you use the hjkl keys on Vim with a MacBook Pro? [closed]

Does anyone use the h,j,k,l keys on Vim with a MacBook Pro. I find this quite difficult as they are far from the Enter key, which is used a lot. I know that navigating Vim should be done in a more ...
2
votes
1answer
123 views

Pikachoose/Fancybox Integration - navigation arrows on the lightbox

I'm using the Fancybox integration with Pikachoose as explained here: http://www.pikachoose.com/how-to-fancybox/ I'm trying to get the lightbox to display next and previous arrows but not on the ...
0
votes
3answers
87 views

Space between pointer arrow in c

I was notified the other day that I shouldn't use pointer arrows in a certain way in c. What I did was this: struct info { int x; char *data; } int main() { struct info *information; ...
2
votes
1answer
99 views

Jumping mechanics in Netwire

I think I need some incentive on how to make this, I'm not really experienced in general platforming game mechanics... Anyway, my player figure has this up to now: movePlayer = proc p -> do ...
1
vote
1answer
34 views

YUI scrollView arrows not working after page scroll

I made use of YUI scrollview to make a menu construction with touch, flick and arrows. However, for some reason the arrows have a bug. When the page is loaded the first time it works fine, however, ...
10
votes
2answers
316 views

What's wrong with this implementation of quicksort using Arrows?

Ok, so I thought of having some fun with arrows. I tried to directly translate the sexy Haskell quicksort to an implementation that uses arrows instead. But it does not work correctly. import ...
3
votes
3answers
102 views

Evaluation of an AST (as a GADT) with arrows as atomic values

The following program type-checks and compiles: import Control.Arrow data Ns = Na | Nb | Nc | Nd deriving Show data Net a where Uni :: a -> Net a Serial :: Net a -> Net a -> Net a ...
2
votes
1answer
112 views

Using arrows to generate deeply nested records

I have a deeply nested record which I am trying to rebuild from the database. For example, A contains many B records. B records have many C records. C has many Ds. I have functions to query the ...
1
vote
1answer
57 views

Get nth element from the page with XmlArrow?

Following this page scraping tutorial the author gets a collection of all images on the page as follows: css :: ArrowXml a => String -> a XmlTree XmlTree css tag = multi (hasName tag) images ...
6
votes
1answer
141 views

Chaining arrows of types `a b [c]` and `a c d`

I have an arrow which outputs a list of values (a b [c]) and another arrow which accepts a single value of that type (a c d). What I need basically is a way to chain them or uplift the second arrow to ...
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 ...
3
votes
1answer
211 views

Lift Kleisli arrow into IO?

If I have the following two Kleisli arrows: stdoutProcessA :: Kleisli Maybe String (IO String) writeToFileA :: Kleisli Maybe (FilePath, String) (IO ()) I would like to be able to write someting ...
9
votes
2answers
251 views

Haskell's Arrow-Class in Agda and -> in Agda

I have two closely related questions: First, how can the Haskell's Arrow class be modeled / represented in Agda? class Arrow a where arr :: (b -> c) -> a b c ...
8
votes
1answer
217 views

Observable recursion (or binding) in Arrows

I am trying to find a way to translate normal recursive notation such as the |fib| function below to an arrow, retaining as much of the structure of the recursive notation as possible. In addition I ...
1
vote
1answer
128 views

How can arrows be used for multiple tuples?

foo (a1,a2) (b1,b2) (c1,c2) = (bar a1 b1 c1, bar2 a2 b2 c2) I have a lot of those constructs with different numbers of argument tuples. In the case of foo' (a1,a2) = (bar' a1, bar2' a2) I thought ...
17
votes
1answer
654 views

Useful operations on free arrows

We know free monads are useful, and packages like Operational make it easy to define new monads by only caring about the application-specific effects, not the monadic structure itself. We can easily ...
10
votes
1answer
285 views

Arrow equivalent of mapM?

I'm trying to grok & work with Arrows, and am having some difficulty. I have a context where I need an Arrow [a] [b], and I want to write an Arrow a b and map/sequence it inside the arrow, a la ...
3
votes
5answers
271 views

Can I map the first element of a pair without arrows?

I'm eyeing functors, applicative functors… I'm not sure how to get where I want, but I have the feeling that following the types should get me closer. Is there a simple way to make a map-alike which ...
17
votes
2answers
392 views

How does this definition of ArrowLoop.loop work?

The function instance for ArrowLoop contains loop :: ((b,d) -> (c,d)) -> (b -> c) loop f b = let (c,d) = f (b,d) in c First I have a problem with the signature: How can we possibly get b ...
10
votes
2answers
463 views

Creative uses of arrows

I just read the post Creative uses of monads, that is crowded of very interesting ideas and references, so I got curious: what about arrows? I'm not looking for personal opinions or references on the ...
11
votes
3answers
718 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 ...
3
votes
2answers
249 views

How do I use arrows here?

Consider foldr (\x (a,b) -> (a || x==2, b || x==7 )) (False,False) [1..6] --(True,False) Ignoring the fact that this could be written easily using elem, I have the strong feeling that I could ...
6
votes
2answers
257 views

Haskell Arrows inside Tuples

I want to crate a tuple, that holds an arrow and a string that describes the arrow. If i do so with functions (instead of arrows), the following works like expected: funTimes10 = (*10) describe10 = ...
0
votes
1answer
74 views

HXT XML search not returning expected results

So i'm parsing this XML file . Once i reach a node inside it i have one child for a code , one for a descrition and one or more (grandchildren) nodes keeping outside node references. I first tried ...
3
votes
1answer
207 views

better use of HXT and arrows

I ve been using hxt with no problem, but there was a problem since the beginning. See, imagine the following piece of code liftKeys = atTag "myKeys" >>> proc e -> do key1 <- ...
8
votes
1answer
304 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 ...
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. ...
4
votes
1answer
491 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 ...
7
votes
1answer
701 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
693 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 ...
6
votes
3answers
225 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 ...
1
vote
1answer
106 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 ...
3
votes
1answer
352 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 ...
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 ...
10
votes
2answers
467 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 ...
17
votes
1answer
875 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. ...
3
votes
2answers
287 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 ...
5
votes
1answer
301 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. ...
5
votes
1answer
273 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
1answer
336 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 ...
4
votes
2answers
314 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 ...
15
votes
2answers
939 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 ...
7
votes
1answer
299 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 ...
6
votes
1answer
309 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" /> ...
1
vote
3answers
164 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 ...
7
votes
1answer
333 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 ...
19
votes
4answers
1k views

Where can I get a good tutorial about how to use arrows?

I tried to learn the meaning of arrows, but didn't understand them. I used the Wikibooks tutorial. I think Wikibook's problem is mainly that it seems to be written for somebody who already ...

1 2