Haskell is an advanced functional programming language, featuring strong static typing, lazy evaluation, extensive parallelism and concurrency support, and unique abstraction capabilities.
505
votes
15answers
56k views
Getting started with Haskell [closed]
For a few days I've tried to wrap my head around the functional programming paradigm in Haskell. I've done this by reading tutorials and watching screencasts, but nothing really seems to stick.
Now, ...
158
votes
7answers
21k views
Haskell: difference between . (dot) and $ (dollar sign)
What is the difference between the dot (.) and the dollar sign ($)?. As I understand it, they are both syntactic sugar for not needing to use parentheses.
109
votes
1answer
8k views
lenses, fclabels, data-accessor - which library for structure access and mutation is better
There are at least three popular libraries for accessing and manipulating fields of records. The ones I know of are: data-accessor, fclabels and lenses.
Personally I started with data-accessor and ...
9
votes
5answers
1k views
Help explain this chunk of haskell code that outputs a stream of primes
I have trouble understanding this chunk of code:
let
sieve (p:xs) = p : sieve {filter (\ x -> x 'mod' p /= 0) xs)
in sieve [2 .. ]
Can someone break it down for me? I understand there is ...
52
votes
3answers
2k views
When is memoization automatic in GHC Haskell?
I can't figure out why m1 is apparently memoized while m2 is not in the following:
m1 = ((filter odd [1..]) !!)
m2 n = ((filter odd [1..]) !! n)
m1 10000000 takes about 1.5 seconds on the ...
79
votes
0answers
10k views
Can anyone explain Monads? [duplicate]
Possible Duplicate:
What is a monad?
I think I understand what 'Maybe Monads' are, but I'm not sure about the other types.
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 ...
23
votes
6answers
1k views
Why is such a function definition not allowed in haskell?
Shouldn't this definition be allowed in a lazy language like haskell in which functions are curried ?
apply f [] = f
apply f (x:xs) = apply (f x) xs
It's basically a function which applies the ...
59
votes
2answers
4k views
Small Haskell program compiled with GHC into huge binary
My source code can be found here: https://github.com/tm1rbrt/S3DM
When I compile it with ghc test.hs the executable comes out at over 7 meg! What, if anything, can I do to reduce this?
70
votes
3answers
5k views
What does the exclamation mark mean in a Haskell declaration?
I came across the following definition as I try to learn Haskell using a real project to drive it. I don't understand what the exclamation mark in front of each argument means and my books didn't ...
20
votes
5answers
13k views
Scala: How to define “generic” function parameters?
I am trying to learn Scala now, with a little bit of experience in Haskell. One thing that stood out as odd to me is that all function parameters in Scala must be annotated with a type - something ...
67
votes
6answers
10k views
How can I use functional programming in the real world?
Functional languages are good because they avoid bugs by eliminating state, but also because they can be easily parallelized automatically for you, without you having to worry about the thread count.
...
84
votes
4answers
6k views
What are some compelling use cases for dependent method types?
Dependent method types, which used to be an experimental feature before, has now been enabled by default in the trunk, and apparently this seems to have created some excitement in the Scala community. ...
75
votes
6answers
4k views
Haskell: What is Weak Head Normal Form?
What does Weak Head Normal Form (WHNF) mean? What does Head Normal form (HNF) and Normal Form (NF) mean?
Real World Haskell states:
The familiar seq function evaluates an expression to what we ...
55
votes
1answer
2k views
Memory footprint of Haskell data types
How to find the actual amount of memory required to store a value of some data type in Haskell (mostly with GHC)? Is it possible to evaluate it in runtime (e.g. in GHCi) or is it possible to estimate ...
24
votes
4answers
5k views
234
votes
7answers
18k views
Large-scale design in Haskell?
What is a good way to design/structure large functional programs, especially in Haskell?
I've been through a bunch of the tutorials (Write Yourself a Scheme being my favorite, with Real World Haskell ...
114
votes
1answer
7k views
What's the status of multicore programming in Haskell?
What's the status of multicore programming in Haskell? What projects, tools, and libraries are available now? What experience reports have there been?
76
votes
4answers
4k views
Reading GHC Core
Core is GHC's intermediate language. Reading Core can help you better understand the performance of your program. Someone asked me for documentation or tutorials on reading Core, but I couldn't find ...
59
votes
12answers
11k views
What is Haskell actually useful for?
I really hope nobody deems this question as closable because it's a pretty straight forward one.
I Googled this question, but not much information was found that was concise and informative for me.
...
82
votes
7answers
16k views
What are the primary differences between Haskell and F#?
I've searched on the Internet for comparisons between F# and Haskell but haven't found anything really definitive. What are the primary differences and why would I want to choose one over the other?
25
votes
4answers
2k views
How to create a polyvariadic haskell function?
I need a function which takes an arbitrary number of arguments (All of the same type), does something whith them and afterwards gives a result back. A list of arguments is impracticable in my specific ...
41
votes
5answers
2k views
What's so bad about Lazy I/O?
I've generally heard that production code should avoid using Lazy I/O. My question is, why? Is it ever OK to use Lazy I/O outside of just toying around? And what makes the alternatives (e.g. ...
19
votes
6answers
2k views
Is Haskell truly pure (is any language that deals with input and output outside the system)?
After touching on Monads in respect to functional programming, does the feature actually make a language pure, or is it just another "get out of jail free card" for reasoning of computer systems in ...
13
votes
6answers
545 views
How do functors work in haskell?
I'm trying to learn Haskell and I'm through all the basics. But now I'm stuck, trying to get my head around functors.
I've read that "A functor transforms one category into another category". What ...
16
votes
9answers
4k views
Cartesian product
I wish to produce the cartesian product of 2 lists in Haskell, but I cannot work out how to do it. The cartesian product gives all combinations of the list elements:
xs = [1,2,3]
ys = [4,5,6]
...
13
votes
2answers
774 views
Haskell ranges and floats
Why is the behavior of the Haskell range notation different for floats than for integers and chars?
Prelude> [1, 3 .. 10] :: [Int]
[1,3,5,7,9]
Prelude> [1, 3 .. 10] :: [Float]
...
8
votes
6answers
2k views
How to find the frequency of characters in a string in Haskell?
How can I count the frequency of characters in a string and then output them in sort of a table?
For example, if I input the word "happy" the result would be
h 1
a 1
p 2
y 1
If this ...
202
votes
9answers
26k views
Speed comparison with Project Euler: C vs Python vs Erlang vs Haskell
I have taken Problem #12 from Project Euler as a programming exercise and to compare my (surely not optimal) implementations in C, Python, Erlang and Haskell. In order to get some higher execution ...
168
votes
10answers
19k views
Is functional GUI programming possible?
I've recently caught the FP bug (trying to learn Haskell), and I've been really impressed with what I've seen so far (first-class functions, lazy evaluation, and all the other goodies). I'm no expert ...
32
votes
8answers
8k views
Haskell's algebraic data types
I'm trying to fully understand all of Haskell's concepts.
In what ways are algebraic data types similar to generic types, e.g., in C# and Java? And how are they different? What's so algebraic about ...
7
votes
14answers
8k views
Algorithm - How to delete duplicate elements in a list efficiently?
There is a list L. It contains elements of arbitrary type each.
How to delete all duplicate elements in such list efficiently? ORDER must be preserved
Just an algorithm is required, so no import any ...
15
votes
4answers
1k views
Handling incremental Data Modeling Changes in Functional Programming
Most of the problems I have to solve in my job as a developer have to do with data modeling.
For example in a OOP Web Application world I often have to change the data properties that are in a object ...
25
votes
3answers
1k views
runST and function composition
Why does this typecheck:
runST $ return $ True
While the following does not:
runST . return $ True
GHCI complains:
Couldn't match expected type `forall s. ST s c0'
with actual type ...
17
votes
2answers
689 views
What's the “|” for in a Haskell class definition?
I can't figure out what the "| m -> w"-part means in a class definition like this:
class (Monoid w, Monad m) => MonadWriter w m | m -> w
What additional information does this add to the class ...
2
votes
2answers
1k views
Operating on a return from a Maybe that contains “Just”
I have an algorithm that returns ->Maybe ([(Int,Int)],(Int,Int))
I would like to call this from another method and perform an operation on the data.
However, the return value contains the keyword ...
142
votes
3answers
23k views
A monad is just a monoid in the category of endofunctors, what's the problem?
Who first said
A monad is just a monoid in the
category of endofunctors, what's the
problem?
and on a less important note is this true and if so could you give an explanation (hopefully one ...
140
votes
4answers
15k views
Comparing Haskell's Snap and Yesod web frameworks
The two Haskell web frameworks in the news recently are Yesod (at 0.8) and Snap (at 0.4).
It's quite obvious that Yesod currently supports a lot more features than Snap. However, I can't stand the ...
22
votes
6answers
4k views
Real world Haskell programming
Having been an imperative developer for some years now, I had never had the urge to learn functional programming.
A couple months ago at last I decided to learn Haskell. It's quite a cool language, ...
39
votes
3answers
1k views
What is the purpose of Rank2Types?
I am not really proficient in Haskell, so it might be a very easy question.
What language limitation do Rank2Types solve?
Do not functions in Haskell already support polymorphic arguments?
50
votes
1answer
3k views
Haskell Weird Kinds: Kind of (->) is ?? -> ? -> *
When I was experimenting with Haskell kinds, and trying to get the kind of ->, and this showed up:
$ ghci
...
Prelude> :k (->)
(->) :: ?? -> ? -> *
Prelude>
Instead of the ...
46
votes
6answers
2k views
Haskell function composition (.) and function application ($) idioms: correct use
I have been reading Real World Haskell and I am nearing the end but a matter of style has been niggling at me to do with the (.) and ($) operators.
When you write a function that is a composition of ...
13
votes
3answers
2k views
Sampling sequences of random numbers in Haskell
I need small lists of gaussian random numbers for a simulation and so I tried the following:
import System.Random
seed = 10101
gen = mkStdGen seed
boxMuller mu sigma (r1,r2) = mu + sigma * sqrt ...
25
votes
10answers
3k views
Why is the minimalist, example Haskell quicksort not a “true” quicksort?
Haskell's website introduces a very attractive 5-line quicksort function, as seen below.
quicksort [] = []
quicksort (p:xs) = (quicksort lesser) ++ [p] ++ (quicksort greater)
where
lesser ...
26
votes
5answers
993 views
How do I write, “if typeclass a, then a is also an instance of b by this definition.”
I have a typeclass MyClass, and there is a function in it which produces a String. I want to use this to imply an instance of Show, so that I can pass types implementing MyClass to show. So far I ...
24
votes
1answer
590 views
Is there a list of GHC extensions that are considered 'safe'?
Occasionally, a piece of code I want to write isn't legal without at least one language extension. This is particularly true when trying to implement ideas in research papers, which tend to use ...
13
votes
6answers
2k views
Lambda for type expressions in Haskell?
Does Haskell, or a specific compiler, have anything like type-level lambdas (if that's even a term)?
To elaborate, say I have a parametrized type Foo a b and want Foo _ b to be an instance of, say, ...
21
votes
1answer
3k views
Haskell linear algebra?
I am starting to test Haskell for linear algebra. Does anyone have any recommendations for the best package for this purpose? Any other good resources for doing basic matrix manipulation with ...
11
votes
5answers
4k views
Does Haskell have variables?
I've frequently heard claims that Haskell doesn't have variables; in particular, this answer claims that it doesn't, and it was upvoted at least nine times and accepted.
So does it have variables or ...
8
votes
7answers
979 views
Why does ghci say that 1.1 + 1.1 + 1.1 > 3.3 is True?
I've been going through a Haskell tutorial recently and noticed this behaviour when trying some simple Haskell expressions in the interactive ghci shell:
Prelude> 1.1 + 1.1 == 2.2
True
Prelude> ...