Haskell is an advanced functional programming language, featuring strong static typing, lazy evaluation, extensive parallelism and concurrency support, and unique abstraction capabilities.

learn more… | top users | synonyms | haskell jobs

2
votes
2answers
63 views

How is the calculation of types in Haskell

Lets say flip :: (a->b->c) ->b->a->c const ::d->e->d type of (flip const) would be a=d,b=e,c=d in b->a->c so the type would be e->d->d But for ...
4
votes
1answer
32 views

Monad transformers monad duplication

I am new to monad transformers, so sorry easy question. I have value val :: MaybeT IO String and function fn :: String -> IO [String]. So after binding, I have val >>= liftM fn :: MaybeT IO ...
0
votes
2answers
46 views

haskell modulus function using repeated subtractions

I am required to write a modulus function (using repeated subtractions and not using the primitive mod function). mod' :: Int -> Int -> Int mod' x 0 = 0 mod' 0 x = x mod' x y | x >= y = ...
2
votes
1answer
34 views

Generating template with some logic via HStringTemplate

Here is some invalid HStringTemplate syntax: option_a = $options.a$ option_b = $options.b$ $if options.option_c_is_needed$ option_c = $option.c$ $end$ In other words, part of template file should ...
2
votes
1answer
89 views

Haskell - Finding the max value of node in a tree

I have a problem. I have to implement a function maxT in Haskell which returns the max value of a node from a binary tree. data Tree a = Leaf a | Node (Tree a) a (Tree a) This is given. What ...
1
vote
1answer
61 views

How to check whether a binary tree has the heap property?

Given a binary tree, I want to check whether it has the heap property e.g. if B is a child node of A then key(A)>=key(B): data Tree a = Leaf|Node a (Tree a)(Tree a) I have started my function as ...
7
votes
2answers
50 views

Compiler switch to turn debugging messages on/off?

OK, so here's a simple question. I've written a function debug :: String -> IO (). I'd like to set things up so that when I compile my program one way, this function writes to standard error, and ...
3
votes
4answers
108 views

How does this Haskell function work?

I was struggling to see how this function worked. For the nth number it should calculate the sum of the previous three elements. f' :: Integer->Integer f' = helper 0 0 1 where helper a b c ...
2
votes
0answers
22 views

How to effectively check if an entry is present using HDBC in haskell?

Like mentionned in my question, I have an unique constraint on a table in which I want to insert some data. I have to check if the data is already present and insert it if not. That is what I can't ...
0
votes
0answers
60 views

Introduction to folders of haskell platform?

I am stressed from many folders included in haskell platform because i do not know the structure of libraries, can not find and read that needed for studying or programming somethings new. anythings ...
14
votes
3answers
238 views

Why recursive `let` make space effcient?

I found this statement while studying Functional Reactive Programming, from "Plugging a Space Leak with an Arrow" by Hai Liu and Paul Hudak ( page 5) : Suppose we wish to define a function that ...
2
votes
0answers
26 views

Haskell SDL-mixer compilation error

I am trying to install the SDL-mixer haskell package by using "cabal install sdl-mixer". When I do so, it gives the error Resolving dependencies... [1 of 1] Compiling Main ( ...
3
votes
1answer
61 views

Haskell System is a member of unusable hidden package

System is absolutely brimming with handy useful IO stuff, but apparently it's been deprecated I am to understand (presuming this because it was moved into the deprecated haskell98 package), that said; ...
-4
votes
0answers
114 views

Give me reasons to learn another language [closed]

There are so many languages out there. And I, as many others, am interested in learning another one. However, I am having trouble seeing reasons to really delve into any more. I learned BASIC and ...
0
votes
3answers
102 views

Convert Int into [Int]

I'm looking through a past exam paper and don't understand how to convert Int to [Int]. For example, one of the questions asks us to produce a list of all the factors of a whole number excluding both ...
2
votes
1answer
108 views

Why does `take` with a large number return [] even though the list is infinite?

I have a doubt on why Haskell couldn't handle the following line Prelude> take 1000000000000 $ repeat ' ' That line of code will return: "" Which is obviously not 1,000,000,000,000 spaces. ...
2
votes
0answers
52 views

What are the limitations of buffer size of textBufferSetView in haskell using gtk?

What is the buffer size? I can set a buffer to take in VC "Cons" [VC "Z" [],VC "Cons" [VC "S" [VC "Z" []],VC "Cons" [VC "S" [VC "S" [VC "Z" []]],VC "Cons" [VC "S" [VC "S" [VC "S" [VC "Z" ...
0
votes
2answers
71 views

Dirty hack for overlapping instances?

Module A imports modules B and C Module B imports instance X Module C imports instance Y X and Y are instances of a common type class. Instances X and Y are identical in type, that is, fully ...
1
vote
5answers
108 views

Algorithm for matching object properties with rules

Apologies for the unclear title. Here's the explanation: I have a type of object Foo having properties a,b,c,d. Lets say each of these properties(type of string/bool) can have individually 3 unique ...
6
votes
2answers
72 views

How to create a non-TH package from code generated using Template Haskell?

I'm making a small package that defines wrappers for tuples and adds instances form them, like newtype Tuple2 a = Tuple2 { untuple2 :: (a, a) } deriving (...) tuple2 :: a -> a -> Tuple2 a ...
3
votes
1answer
85 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
36 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
216 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
75 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 _ ...
13
votes
2answers
179 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... ...
17
votes
2answers
157 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
140 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" ...
13
votes
1answer
126 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
94 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
103 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 ...
6
votes
1answer
77 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 ...
6
votes
1answer
135 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) ...
5
votes
1answer
132 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
79 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
136 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
77 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
207 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
109 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
81 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
102 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
63 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
125 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
86 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
615 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
82 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
53 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
112 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
34 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
107 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
83 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 ...

1 2 3 4 5 226