Tagged Questions
Functional programming is a programming paradigm which primarily uses functions as means for building abstractions and expressing computations that comprise a computer program.
261
votes
15answers
24k views
How to learn Haskell
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, ...
170
votes
15answers
18k views
Does Functional Programming Replace GoF Design Patterns?
Since I started learning F# and OCaml last year, I've read a huge number of articles which insist that design patterns (especially in Java) are workarounds for the missing features in imperative ...
169
votes
23answers
11k views
Why is Haskell used so little in the industry?
It is a wonderful, very fast, mature and complete language. It exists for a very long time and has a big set of libraries. Yet, it appears not to be widely used. Why ? I suspect it is because it is ...
164
votes
6answers
12k 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 ...
158
votes
8answers
5k views
How can a time function exist in functional programming?
I've to admit that I don't know much about functional programming. I read about it from here and there, and so came to know that in functional programming, a function returns the same output, for same ...
136
votes
7answers
9k views
Monad in plain English? (For the OOP programmer with no FP background)
In terms that an OOP programmer would understand (without any functional programming background), what is a monad?
What problem does it solve and what are the most common places it's used?
EDIT:
To ...
135
votes
30answers
9k views
What is a monad?
Having briefly looked at Haskell recently I wondered whether anybody could give a brief, succinct, practical explanation as to what a monad essentially is? I have found most explanations I've come ...
122
votes
14answers
22k views
What is a y-combinator?
A y-combinator is a comp-sci concept from the "functional" side of things. Most programmers don't know much at all about them, if they've even heard about them.
What is a y-combinator?
How do they ...
111
votes
9answers
24k views
What is (functional) reactive programming?
What does functional reactive programming (FRP) mean in practice? What is non-reactive programming?
The description in Wikipedia is quite abstract.
109
votes
10answers
29k views
Best explanation for Languages without Null
Every so often when programmers are bitching about null errors/exceptions someone asks what we do without null.
I myself have some basic idea of the coolness of option types but I don't have the ...
108
votes
10answers
9k 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 ...
101
votes
6answers
11k views
Efficiency of purely functional programming
Does anyone know what is the worst possible asymptotic slowdown that can happen when programming purely functionally as opposed to imperatively (i.e. allowing side-effects)?
Clarification from ...
89
votes
11answers
9k views
Is there a software-engineering methodology for functional programming?
Software Engineering as it is taught today is entirely focused on object-oriented programming and the 'natural' object-oriented view of the world. There is a detailed methodology that describes how to ...
86
votes
15answers
25k views
What is tail-recursion?
Whilst starting to learn lisp, I've come across the term tail-recursive. What does it mean?
79
votes
0answers
9k views
Can anyone explain Monads? [closed]
Possible Duplicate:
What is a monad?
I think I understand what 'Maybe Monads' are, but I'm not sure about the other types.
77
votes
9answers
10k views
Why should a .net developer learn F#?
What is the new language F# all about? Where is that going to be useful? And what is Microsoft's future plan (release road map) regarding this language?
73
votes
1answer
4k 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?
70
votes
2answers
5k views
Real-world applications of zygohistomorphic prepromorphisms
Yes, these ones:
{-#LANGUAGE TypeOperators, RankNTypes #-}
import Control.Morphism.Zygo
import Control.Morphism.Prepro
import Control.Morphism.Histo
import Control.Functor.Algebra
import ...
67
votes
14answers
4k views
Why did you decide “against” using Erlang?
Have you actually "tried" (means programmed in, not just read an article on it) Erlang and decided against it for a project? If so, why? Also, if you have opted to go back to your old language, or to ...
63
votes
8answers
11k 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?
62
votes
8answers
5k views
What is a 'Closure'?
I asked a question about Currying and closures were mentioned.
What is a closure? How does it relate to currying?
Additional:
Kyle's answer is great but to my poor procedural/OO mind Ben Childs ...
61
votes
11answers
4k views
In Functional Programming, what is a functor?
I've come across the term 'Functor' a few times while reading various articles on functional programming, but the authors typically assume the reader already understands the term. Looking around on ...
60
votes
5answers
5k views
What is the difference between a 'closure' and a 'lambda'?
Could someone explain? I understand the basic concepts behind them but I often see them used interchangeably and I get confused.
And now that we're here, how do they differ from a regular function?
59
votes
24answers
6k views
What's a good Functional language to learn first? [closed]
One of the blogs I read has been going over the fundamentals of Functional programming lately, and it's gotten me a bit more interested. Then, someone posted a question here that seems like a good ...
59
votes
16answers
7k views
Beginners Guide to Haskell?
I've been looking for a decent guide to Haskell for some time, but haven't been able to find one that seems interesting enough to read through and/or makes sense.
I've had prior exposure to Haskell a ...
58
votes
9answers
3k views
How do functional programming languages work?
I was just reading this excellent post, and got some better understanding of what exactly object oriented programming is, how Java implements it in one extreme manner, and how functional programming ...
57
votes
54answers
4k views
How do you create a function that returns a function in your language of choice?
Recently I've been learning Lua and I love how easy it is to write a function that returns a function. I know it's fairly easy in Perl as well, but I don't think I can do it in C without some ...
54
votes
6answers
7k 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.
...
51
votes
18answers
7k views
Is functional programming relevant to web development?
I've been seeing so much recently about functional programming and Clojure looks particularly interesting. While I 'understand' the basic description of what it is, I can't figure out how I would use ...
50
votes
3answers
2k views
Ordering of parameters to make use of currying
I have twice recently refactored code in order to change the order of parameters because there was too much code where hacks like flip or \x -> foo bar x 42 were happening.
When designing a ...
48
votes
3answers
3k views
Haskell function application and currying
I am always interested in learning new languages, a fact that keeps me on my toes and makes me (I believe) a better programmer. My attempts at conquering Haskell come and go - twice so far - and I ...
48
votes
7answers
3k views
Why are side-effects modeled as monads in Haskell?
Could anyone give some pointers on why the unpure computations in Haskell are modeled as monads?
I mean monad is just an interface with 4 operations, so what was the reasoning to modeling ...
48
votes
4answers
3k views
What is 'Currying'?
I've seen references to curried functions in several articles and blogs but I can't find a good explanation (or at least one that makes sense!)
47
votes
18answers
2k views
Why Option[T]?
I am a beginner to functional programming and I have recently started studying Scala and I really love this language for the all goodies it provides like closures, pattern matching, currying etc.
...
47
votes
4answers
13k views
Can someone explain Scala's yield?
I understand Ruby and Python's yield. What does Scala's yield do?
47
votes
20answers
10k views
Learning Scala or Haskell
I'm considering dipping my toe in the functional programming world, and wondering if it would be better to start with Scala or Haskell. I'm coming at this primarily as a Python programmer. My only ...
45
votes
16answers
10k views
What is the best functional language for scientific programming
I am coming from C/C++, Python background and I am looking to learn a functional language that (Hopefully) can do
Serious Matrix Computation
expressive
real world modelling
database integration
...
44
votes
12answers
10k views
Medium-size Clojure sample application?
Is there a medium-sized Clojure sample application that could be used as a "best-practices" example, and a good way to see what such an application would look like in terms of code and code ...
44
votes
26answers
9k views
Is Scala the next big thing? [closed]
I've been learning Scala recently, and it seems like a very very promising general purpose programming language. It has all the good functional programming features, terse syntax, it runs on JVM and ...
43
votes
9answers
2k views
functional programming - Is Immutability Expensive?
Request:
The question is two part. The first is conceptual, comparing functional and
imperative programming from the perspective of cost of immutability.
Second, about specifics of java/scala.
...
42
votes
2answers
946 views
Recursion schemes for dummies?
I'm looking for some really simple, easy-to-grasp explanations of recursion schemes and corecursion schemes (catamorphisms, anamorphisms, hylomorphisms etc.) which do not require following lots of ...
41
votes
9answers
3k views
How/why do functional languages (specifically Erlang) scale well?
I have been watching the growing visibility of functional programming languages and features for a while. I looked into them and didn't see the reason for the appeal.
Then, recently I attended Kevin ...
41
votes
50answers
6k views
Why functional languages?
I see a lot of talk on here about functional languages and stuff. Why would you use one over a "traditional" language? What do they do better? What are they worse at? What's the ideal functional ...
40
votes
9answers
2k views
In what areas does F# make “absolute no sense in using”?
Don Syme in his SPLASH talk says that F# is NOT intended to be a replacement for C# even though it has the general capabilities. He goes on to say that there are areas where F# makes no sense in ...
40
votes
17answers
4k views
A Gentler Introduction to Functional Programming
I am trying to learn Haskell, and I really like it, but I can't wrap my head around most of it. Would Lisp, OCaml, etc. be a gentler introduction to functional programming?
39
votes
9answers
2k views
Are FP and OO orthogonal?
I have heard this time and again, and I am trying to understand and validate the idea that FP and OO are orthogonal.
First of all, what does it mean for 2 concepts to be orthogonal?
FP encourages ...
39
votes
13answers
11k views
What is the difference between procedural programming and functional programming?
I've read the Wikipedia articles for both procedural programming and functional programming, but I'm still slightly confused. Could someone boil it down to the core?
39
votes
20answers
3k views
How to transition to Functional Programming
It seems that the next major transition / fad will be towards Functional Programming. What resources / experiences are you finding necessary to grok functional programming?
38
votes
10answers
5k views
Yet another Haskell vs. Scala question
I've been using Haskell for several months, and I love it—it's gradually become my tool of choice for everything from one-off file renaming scripts to larger XML processing programs. I'm definitely ...
38
votes
22answers
3k views
What is your favourite cleverly written functional code?
What are your favourite short, mind-blowing snippets in functional languages?
My two favourite ones are (Haskell):
powerset = filterM (const [True, False])
foldl f v xs = foldr (\x g a -> g (f ...