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

0
votes
0answers
23 views

Odd behavior with unordered-containers (HashMap.Strict)?

sorry for the nebulous question, but has anyone observed buggy behaviors with Data.HashMap.Strict from unordered-containers-0.2.3.0 on GHC 7.6.3? In particular, there are Maps which clearly contain ...
4
votes
2answers
167 views

Has the Control.Monad.State API changed recently?

As a learning exercise, I'm trying to implement a heapsort in Haskell. I figured the State monad would be the right choice to do this, since heaps rely pretty heavily on moving data around inside a ...
2
votes
1answer
34 views

Haskell HashTable help rewrite using State monad

So, here is my clumsy code implementing chained HashTable in Haskell. {-# LANGUAGE FlexibleInstances #-} import Data.Array(Array(..), array, bounds, elems, (//), (!)) import Data.List(foldl') import ...
0
votes
2answers
77 views

Get tuple from list and use it as Map key

I'm a Haskell newbie and I'm trying to get use Map.fromList. I have defined the following data types: type No = String data Arco = Arco { de :: No , para :: No , ...
1
vote
1answer
33 views

Haskell: Network conduit “callback” questions

I'm using network-conduit and runTCPServer to power my stranded server. In this case: -- | Helper which represents a conduit chain for each client connection serverApp :: Application SessionIO ...
0
votes
1answer
135 views

Turning a tree into a heap in haskell

I need to make an implementation of a priority queue with a Heap Tree in Haskell, for example: Given a list: [3,2,7,8,4,1,9] 3 is the main root 2 is its left leaf 7 is its right leaf 8 is the left ...
1
vote
2answers
94 views

what's wrong in this very basic function declaration?

I am a newbie to Haskell, and I was reading Learn you a Haskell, and in the page they declared a function as tell :: (Show a) => [a] -> String tell [] = "The list is empty" tell (x:[]) = ...
13
votes
2answers
636 views

Common recursion pattern

I'm getting used to Haskell's higher-order functions. Usually I can replace explicit patterns of recursion with functions like map, fold, and scan. However, I often run into the following recursion ...
0
votes
1answer
41 views

Recursion in treeFold function

I have tree data type: data Tree a = Node { rootLabel :: a, -- label value subForest :: [Tree a] -- zero or more child trees } {-- Node (a) [] ..or... Node (a1) [ Node (a2) [..], ...
0
votes
3answers
47 views

how to use an incomplete list in its condition

I know.. The title isn't explaining well.. if you have a better title tell me in a comment..I'm making a prime numbers generator for fun and learning purposes..here's my code: divisors x xs = [ y | y ...
3
votes
1answer
114 views

Listen on TCP and UDP on the same port

How can I get Haskell to listen for UDP and TCP on the same port? Here is the code I have so far (based on acme-http): listenOn portm = do ...
4
votes
0answers
59 views

Can the type checker help me out here? With type families, maybe?

So I'm writing this little soccer game for some time now, and there's one thing that bugs me from the very beginning. The game follows the Yampa Arcade pattern, so there's a sum type for the "objects" ...
5
votes
2answers
69 views

How can I make sure main thread ends after all other threads ends?

import Control.Concurrent main = do forkIO $ putStrLn "123" forkIO $ putStrLn "456" I have written the code above. But when I executed it, I always got 123 only. 456 is not printed. I guess ...
6
votes
1answer
123 views

Knuth-Morris-Pratt algorithm in Haskell

I have a trouble with understanding this implementation of the Knuth-Morris-Pratt algorithm in Haskell. http://twanvl.nl/blog/haskell/Knuth-Morris-Pratt-in-Haskell In particular I don't understand ...
0
votes
1answer
100 views

Haskell CPS: How to implement map and filter functions using Cont monad?

I've been trying to learn CPS, seems I didn't really get my head around it, could you implement basic filter and map using Cont monad?
17
votes
2answers
168 views

Could cabal notice about unused package in dependencies?

For given cabal project how could unused dependencies packages be retrieved? Is there a way to get something like warning during cabal install process if there is a package mentioned in project ...
7
votes
1answer
140 views

Why is GHC distributed with gcc and g++?

On Windows, GHC is distributed with gcc and g++, e.g. under ghc-7.6.3\mingw\bin. From the download page, it is also noted under the windows binary download that the build for Windows "also includes ...
1
vote
0answers
38 views

Functional Banana Traveller - removing monolithic function

For reference here is the codebase for my game. In this question, it became evident that the function, updateGS did not fit the FRP style. First on the agenda, as suggested by Heinrich, is the ...
12
votes
1answer
168 views

How do exceptions work in Haskell (part two)?

I have the following code: {-# LANGUAGE DeriveDataTypeable #-} import Prelude hiding (catch) import Control.Exception (throwIO, Exception) import Control.Monad (when) import Data.Maybe import ...
0
votes
1answer
61 views

Matching letters in 2 strings with haskell

I just started with haskell and im wondering if there is a easy way to match the letters between 2 string and output them. like: iced and liked will return i,e,d Thank you!
3
votes
1answer
65 views

“No operation” haskell

If I remember correctly from school, there's a function or keyword that is used for "not yet implemented" but the code compiles. I've tried to search for it, but can't find. Any one know what I'm ...
0
votes
0answers
42 views

Create list of strings from list of doubles, non Scientific notation

listOfLongDeci = [showFFloat Nothing (1/a) | a<-[2..1000], length (show (1/a)) > 7] listOfLongDeci2 = [show (1/a) | a<-[2..1000], length (show (1/a)) > 7] listOfLongDeci3 = [(1/a) | ...
3
votes
1answer
53 views

Template Haskell: reify in GHCi

Is it somehow possible to do reify in GHCi? When I try it using 'runQ' it complains "can not do reify in the IO monad". >>> runQ (reify ''Bool) Template Haskell error: Can't do `reify' in ...
2
votes
3answers
161 views

Haskell <<loop>>

With getIndex xs y I want the index of the first sublist in xs whose length is greater than y. The output is: [[],[4],[4,3],[3,5,3],[3,5,5,6,1]] aufgabe6: <<loop>> why getIndex does ...
4
votes
2answers
101 views

Why do these folds stop at the head/tail?

I'm reading learnyouahaskell.com and currently investigating folds. In the book there are these examples: maximum' :: (Ord a) => [a] -> a maximum' = foldr1 (\x acc -> if x > acc then x ...
141
votes
16answers
50k views

What are my IDE/Editor choices for Haskell?

I typically use Emacs with hasktags for editing Haskell but I would like to enumerate all the choices and hopefully get feedback on each. Emacs VIM Visual Haskell EclipseFP leksah SHIM (wasn't this ...
0
votes
1answer
81 views

Haskell - implement a function for a given signature

I have to implement an example function with following signature: [[([Char], a, b)]] -> (a -> b -> Char) -> ([Char], b -> a -> Char) So I attempt this way: funcD ...
6
votes
1answer
111 views

How can I parse a string to a function in Haskell?

I want a function that looks something like this readFunc :: String -> (Float -> Float) which operates something like this >(readFunc "sin") (pi/2) >1.0 >(readFunc "(+2)") 3.0 ...
1
vote
2answers
434 views

Is non-local type inference in Haskell or OCaml really useful? [closed]

First, let us assume that local type inference is the sort of type inference found in Scala and C#. Scala local type inference is explained here: http://www.scala-lang.org/node/127 Also, let us ...
3
votes
1answer
76 views

linking extra libraries/objects failed

I made FFI bindings to C++ unordered_map(a.k.a. hash_map) container and its wrapper library called libstl.a. At the first time, it used to work well. But after some point, it has failed to link the ...
6
votes
2answers
209 views

Match a lot of patterns in Haskell efficiently

I have thought of using Haskell for a game server but when coding, I found myself looking at the part where I parse packets thinking "wow, this will result in a lot of pattern matching". This seeing ...
10
votes
1answer
84 views

Employing arrows to fold a list of tuples

Sometimes you want to fold a list of tuples into one tuple using different folding functions. For instance, in order to glue together a list of runState results, getting an (in some sense) combined ...
0
votes
1answer
113 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 ...
3
votes
1answer
142 views

Unwrapping the Haskell State Monad

In the process of writing an assignment for university I am having the ever-joyous fun of learning new Haskell monads. Yay!!! I have a function that typechecks just fine: compile :: Prog -> State ...
7
votes
1answer
241 views

Haskell/Parsec: How do you use the functions in Text.Parsec.Indent?

I'm having trouble working out how to use any of the functions in the Text.Parsec.Indent module provided by the indents package for Haskell, which is a sort of add-on for Parsec. What do all these ...
19
votes
3answers
191 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 ...
3
votes
1answer
122 views

Rewrite a monad computation in prefix notation

I'm trying to figure out how to rewrite a monadic computation with prefix notation (not for real practical goals, just for research), but the problem that one lambda doesn't see another one's ...
2
votes
2answers
88 views

stepping through a function line by line

This user guide: http://www.haskell.org/ghc/docs/latest/html/users_guide/ghci-debugger.html advertises: Execution can be single-stepped: the evaluator will suspend execution approximately ...
10
votes
2answers
123 views

units for rings in haskell in Num or Rational

The Num class of haskell allows for quite general algebraic structures and looks like it's intended to be used to make rings. When speaking of a ring though, it's convenient to be able to explicitly ...
3
votes
0answers
105 views

HsOpenSSL segfaults on OS X

I'm trying to give HsOpenSSL a whirl on Mac OS X, and it's blowing up in my face. The latest Hackage version (HsOpenSSL-0.10.3.3) builds and imports, but doing anything with it kills my GHCi (both ...
25
votes
6answers
3k views

What is the most production-level Haskell to JavaScript compiler, to write code running in the browser?

I am not looking for a necessarily super-robust solution with a 10-year track record, but for something that can be used in a real applications, and goes beyond just being able to run an Hello World ...
2
votes
1answer
55 views

Issue with round with Data.Fixed

I have defined the following type in myfile.hs: {-# LANGUAGE DeriveDataTypeable #-} import Data.Typeable import Data.Fixed data E18 = E18 deriving (Typeable) instance HasResolution E18 where ...
4
votes
1answer
160 views

Can we use Haskell for Web Development with the Razor engine?

I am very new to Haskell but as it is a functional programming language(easy to use functions) i have got some interest in working with it.Currently i am developing an app for Windows azure i was ...
14
votes
0answers
139 views

How do I get text-icu working on Windows?

I was able to cabal install text-icu without errors. (I used --extra-lib-dirs and --extra-include-dirs to point to the lib and include directories in the binary distribution of icu4c.) I was also ...
1
vote
0answers
38 views

Correct way to define a HasPostgres instance for IO? [migrated]

I want to write my database access code for a Snap application in a way that makes the queries easy to test from the ghci repl, while also working within the Snap context. My solution so far is to ...
22
votes
0answers
261 views

Multiple assignments to the same register in an RTL block with Kansas Lava

I'm having trouble understanding Kansas Lava's behaviour when an RTL block contains multiple assignments to the same register. Here's version number 1: foo :: (Clock c, sig ~ Signal c) => sig ...
6
votes
1answer
143 views

Expression evaluation tree in Haskell

In an exam today I was asked to create an expression evaluation tree in Haskell. Usually the answer is as simple as: data Expr = Value Integer | Add Expr Expr | Sub Expr Expr ...
1
vote
1answer
93 views

Haskell print string without newline

When I use this code it's print newline after result. How I can don't write newline? import System.IO main :: IO () main = do a <- getLine b <- getLine let aa = read a ...
20
votes
2answers
2k views

What's the point of map in Haskell, when there is fmap?

Everywhere I've tried using map, fmap has worked as well. Why did the creators of Haskell feel the need for a map function? Couldn't it just be what is currently known as fmap and fmap could be ...
1
vote
2answers
106 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 = ...

1 2 3 4 5 226