Haskell is an advanced functional programming language, featuring strong static typing, lazy evaluation, extensive parallelism and concurrency support, and unique abstraction capabilities.
3
votes
1answer
99 views
Yesod sample projects
I am planning to write a yesod web application. And I'm wondering whether there are some large project using yesod that is well designed that I could look at and experiment with.
I am looking for ...
0
votes
1answer
39 views
installing text-icu on Mac OSX with cabal [closed]
I want to try unicode with haskell, and the Data.Text docs say I need text-icu. This is what I tried:
Mac OS X 10.6.8
~/haskell_programs$ cabal update
Downloading the latest package list from ...
-8
votes
3answers
239 views
Why Haskell's `fst` and `snd` have such a short (strange) names? [closed]
I'm new to Haskell and what really bothers me at the moment is why the people who made the libraries added functions called fst and snd instead of using (normal) names like first and second. What's ...
2
votes
3answers
82 views
Filtering [[String]] with a regex and pattern matching
I'm trying to filter a [[String]] based upon a regex.
filter (\fn -> case (matchRegex (mkRegex "*.exe") fn) of Nothing -> False
Just _ ...
14
votes
2answers
210 views
Calling Haskell from C#
I just spent the last week or so figuring out how to execute C++ code from C# as part of my day job. It took us forever to figure it out, but the final solution is fairly simple.
Now I'm curious... ...
19
votes
3answers
190 views
Haskell: `Map (a,b) c` versus `Map a (Map b c)`?
Thinking of maps as representations of finite functions, a map of two or more variables can be given either in curried or uncurried form; that is, the types Map (a,b) c and Map a (Map b c) are ...
8
votes
2answers
152 views
How does Haskell's lens package handle fields that are also keywords?
How does lens handle the case where a de-sugared field is a keyword? I seem to remember reading that something special is done, but I can't remember where I read it or what the name of the "lensed" ...
14
votes
1answer
143 views
Correspondence between type classes and grammar levels in the Chomsky hierarchy
My question is about the Applicative and Monad type classes on the one hand, and the context-free and context-sensitive grammar levels of the Chomsky hierarchy on the other.
I've heard that there's a ...
1
vote
1answer
99 views
Anyone having trouble install Control.Pipe?
I have the current version of cabal and running cabal install Pipe gave me no issues. But I tried these two imports:
import Control.Proxy
import Control.Pipe
But I'm getting this error message:
...
4
votes
2answers
135 views
Composing Database.Esqueleto queries, conditional joins and counting
How can I compose Database.Esqueleto queries in a modular way such that after defining a "base" query and the corresponding result set, I can restrict the result set by adding additional inner joins ...
7
votes
1answer
86 views
Parsec and custom parsing error type
Is it possible somehow to get parse error of some custom type? It would be cool to get more information about parsing context from error for example. And it seems not very convenient to have error ...
7
votes
1answer
148 views
Is there a free proxy transformer?
Do you think a free proxy transformer is possible? Something like
data FreePT f p a' a b' b m r = ....
instance (Proxy p,Functor f) => Proxy (FreePT f p) where
....
instance (Functor f) ...
6
votes
1answer
143 views
Typeclass for functions with different numbers of arguments
In my simple Haskell DSL, I have the following functions to call other functions:
callF :: forall a. (Typeable a)
=> (V a) -> (V a)
callF fp@(V (FunP name)) =
pack $ FunAppl (prettyV fp) []
...
2
votes
2answers
84 views
Keep track of list index with anonymous function in Haskell
I am pretty new to Haskell. so this might be a bit silly.
What I want is to do something like:
map (\x -> x + **position in list**) [0, 0, 0] => [1, 2, 3]
How can this be done?
5
votes
1answer
154 views
How do I construct a function/type that observes each transition in this state machine?
The gist of my question is that I have a deterministic state automata that is transitioning according to a list of moves, and I want this sequence of transition to serve as a "computational context" ...
0
votes
1answer
80 views
Error with negate, when creating an instance of Num
i've created a data type for complex numbers, and i am trying to create an instance of Num for this datatype. I have been trying to add the negate line in because it is necessary for my show function, ...
10
votes
1answer
222 views
Dynamic Programming Memoization in Haskell
This is my first attempt at using (what I understand to be) dynamic programming. I'm trying to tackle this interesting problem: A* Admissible Heuristic for die rolling on grid
The q function attempts ...
2
votes
6answers
115 views
How to restrict a tuple?
I think tuples in Haskell are like
tuple :: (a,b)
which means a and b can be the same type or can be diffrent types
so if i define a function without giving the type for it then i will get ...
1
vote
1answer
90 views
How to lift function to transformed monad in haskell?
I know with the data constructor and the run*** function,
I can lift any function to a specific MonadTrans instance.
Like this,
import Control.Monad.Trans
import Control.Monad.Trans.Maybe
import ...
9
votes
1answer
107 views
Monitoring the filesystem with Haskell
I'm using the FSNotify package to watch my filesystem for changes to markdown files, so I can run them through Pandoc automatically. However, I'm having trouble getting the manager to exit nicely.
As ...
2
votes
1answer
66 views
haskell hFlush isn't working the way Im expecting
I'm trying to get a program to read an entire file using hFlush, in order to avoid an issue I'm having which has to do with the lazy IO.
readHandle <- openFile fileName ReadMode
hSetBuffering ...
3
votes
1answer
134 views
What does Tree(Int,Int) mean in haskell?
I m novice and i am learning data structures in haskell right now.I saw something like
Tree(Int,Int)
Does that mean tuple of trees? i m trying to write something like
data Tree a = Leaf a | ...
3
votes
1answer
89 views
Multiple lookup structures for same data: Memory duplication?
Suppose I have data on a bunch of people, and I want to be able to look them up in different ways. Maybe there's some kind of data structure (like a binary tree) that facilitates lookup by name. And ...
20
votes
6answers
739 views
Why are if expressions frowned upon in Haskell?
This has been a question I've been wondering for a while. if statements are staples in most programming languages (at least then ones I've worked with), but in Haskell it seems like it is quite ...
1
vote
1answer
84 views
Haskell function composition - wrongly inferred type
In the following Haskell code, the function typeError doesn't typecheck.
wrap x = [x]
listf :: [[a]] -> [[a]]
listf = id
typeCheck :: [a] -> [[a]]
typeCheck x = listf (wrap x)
typeError :: ...
1
vote
1answer
54 views
How to tokenize a string with an embedded string?
I am learning how to use the Haskell lexical analyzer tool called Alex 1.
I am trying to implement a lexical analyzer for this string (an email "From:" header):
From: "John Doe" <john@doe.org>
...
2
votes
2answers
118 views
++, last & init faster than :, head & tail?
Given these two ways of writing a function that finds all primes up to a specific number:
primes1 = iterate
(\ps -> ps ++ [([x |
x <- [last ps + 1..],
all (\p -> x `mod` ...
2
votes
1answer
36 views
How to authenticate from a bookmarklet in Yesod / How to add OPTIONS to Auth subsite of Yesod
I wanted to access a server API I made with Yesod 1.2 from a bookmarklet. I wanted to POST from the bookmarklet at any other sites. The server API has an authentication (by Mozilla Persona and Google ...
1
vote
4answers
108 views
where can I find a complete list of the Haskell modules?
I found that http://www.haskell.org/ghc/docs/latest/html/libraries/ has a big list and references but GHCI has a different list (i.e. when you are trying to load a module, GHCI gives you a list of the ...
0
votes
1answer
84 views
Haskell parse error on input '->' [closed]
I am trying to write a program in Haskell which will get a,b,c of Quadratic function and calculate lists of roots:
roots :: (Double, Double, Double) -> [Double]
roots (a,b,c) =
case ...
3
votes
1answer
78 views
Why does smallCheck's `Series` class have two types in the constructor?
This question is related to my other question about smallCheck's Test.SmallCheck.Series class. When I try to define an instance of the class Serial in the following natural way (suggested to me by an ...
2
votes
2answers
65 views
Haskell construct a type contains class
I want to construct a haskell type:
type SinglePP = (String,GLattice)
Where the GLattice is defined as:
class GLattice l where
join :: l->l->l
....
Is there a way ...
2
votes
2answers
112 views
Types and do notation
This is several questions rolled into one:
In do notation, does each line have to return the same type? For example, can I write one line in a single do block that returns an IO monad, and another ...
4
votes
2answers
100 views
How to use SmallCheck in Haskell?
I am trying to use SmallCheck to test a Haskell program, but I cannot understand how to use the library to test my own data types. Apparently, I need to use the Test.SmallCheck.Series. However, I find ...
0
votes
1answer
129 views
Haskell Time Issue
it is my second question about haskell and i thought my algorhythm is not bad and it gives faster results in c++ and python and there is some problem at haskell it cant give me 10^25 (maybe it gives ...
0
votes
1answer
86 views
Haskell monad return type
I'm trying to do a bit of programming and I can't get into monads. I've advanced a bit with IO functions, but now I'm definitely lost...
I've got a XML string that was loaded from the network (so ...
0
votes
1answer
112 views
Haskell - list comprehension can't enumerate N × N
I have to write a function which returns a list of all pairs (x,y) where x,
y ∈ N , and:
x is the product of two natural numbers (x = a • b, where a, b ∈ N) and
x is really bigger than 5 but really ...
7
votes
1answer
99 views
Transformation under Transformers
I'm having a bit of difficulty with monad transformers at the moment. I'm defining a few different non-deterministic relations which make use of transformers. Unfortunately, I'm having trouble ...
11
votes
5answers
275 views
Can a monad be a comonad?
I know what a monad is. I think I have correctly wrapped my mind around what a comonad is. (Or rather, what one is seems simple enough; the tricky part is comprehending what's useful about this...)
...
-1
votes
0answers
82 views
Haskell - determine set of free and bounded variables of a function
I have to determine the set of free and bounded variables of the function s1 and s2:
s1 := \x -> if y then \z -> (x \y -> y) else (\z -> w) x
So, for s1 I'll write:
FV(s1):= FV (y) ∪ ...
-1
votes
1answer
85 views
How to write a function that controls the data end decide if a data type exists?(Haskell)
Sorry i wasn't sure about how to ask.
I was wondering are we able to control a data type and decide whether the entered data exists in Haskell?
For example;
data Ruler =Ruler Length Price ...
0
votes
2answers
69 views
Haskell: File Access Time Formatted “yyyy-MM-dd”
I'm getting quite lost in all the different date and time libraries available to me in Haskell. What I'm trying to do is format the file modification time as "yyyy-MM-dd". Can someone show me how to ...
0
votes
3answers
68 views
Haskell - List Comprehension - get Input-Elements
I have some problem with list comprehension, if the input is a list.
In these all III excercises it's not allowed to use: map, filter and concat!!!
Part I
Requirements:
A funktion f1 gets a list ...
1
vote
1answer
86 views
How do I declare the type of a variable inside a function in Haskell?
This is a reframe of the question that was asked at Defining variables inside a function Haskell
I have a function the beginning of which looks like this:
recursiveLs :: FilePath -> IO [FilePath]
...
8
votes
1answer
185 views
Every monad is monoid?
Since every Monad is a Monoid on the sequencing operation.
Why doesn't Monad inherit Monoid in haskell?
1
vote
2answers
64 views
Parse Array in nested JSON with Aeson
I'm trying to write a FromJSON function for Aeson.
The JSON:
{
"total": 1,
"movies": [
{
"id": "771315522",
"title": "Harry Potter and the Philosophers Stone (Wizard's ...
4
votes
1answer
69 views
Conditional Compilation inside Literate Haskell
I have a literate haskell file and want to use conditional compilation. I use the bird style of literate programming. The following code does not work.
> #if MIN_VERSION_base(4,6,0)
> import ...
2
votes
3answers
186 views
Are there any Stackless Python like projects for other languages (Java, Lisp, Haskell, Go etc) [closed]
Well thats the question. Are there any projects for other languages which try to imitate what stackless python is doing for python?
1
vote
1answer
56 views
Please provide a simple test-framework example that uses QuickCheck2
I'm struggling a little to get this basic test-framework example to work with QuickCheck2. I get the following error that is mentioned on the above page, due to the example's use of QuickCheck 1. I ...
1
vote
2answers
96 views
Troubles with Haskell condition
I'm a beginner in Haskell and have a trouble in the next block:
up_heap :: Num a => [a] -> [a] -> [a]
up_heap heap (h:t) =
let ppos = quot (length heap) 2 in
case ((ppos > 0) ...

