Tagged Questions
19
votes
13answers
4k views
Haskell vs. procedural programming in the real world
These days I'm getting seriously into functional programming.
While I'm really excited about Haskell and the possibilities it seems to offer, I can also see now that it is going to take me a while ...
18
votes
10answers
2k views
Are we in a functional programming fad?
I use both functional and imperative languages daily, and it's rather amusing to see the surge of adoption of functional languages from both sides of the fence. It strikes me, however, that it looks ...
15
votes
4answers
299 views
Scala: When imperative style fits better?
From the Programming in Scala (second edition), bottom of the p.98:
A balanced attitude for Scala programmers
Prefer vals, immutable objects, and methods without side effects.
Reach for ...
14
votes
3answers
1k views
Idiomatic clojure for progress reporting?
How should I monitor the progress of a mapped function in clojure?
When processing records in an imperative language I often print a message every so often to indicate how far things have gone, e.g. ...
7
votes
7answers
928 views
Is functional Clojure or imperative Groovy more readable?
OK, no cheating now.
No, really, take a minute or two and try this out.
What does "positions" do?
Edit: simplified according to cgrand's suggestion.
(defn redux [[current next] flag] [(if flag ...
6
votes
11answers
2k views
Mixing object-oriented and functional programming
What languages are available that promote both object-oriented and functional programming? I know that any language that supports first-class functions can be considered functional, but I'm looking ...
5
votes
8answers
594 views
Is functional programming a subset of imperative programming?
One of the main characteristics of functional programming is the use of side-effectless functions. However, this can be done in an imperative language also. The same is true for recursion and lambda ...
4
votes
9answers
465 views
Translate imperative control flow with break-s/continue-s to haskell
Consider the following imperative code which finds the largest palindrome among products of 3-digit numbers (yes, it's the one of the first tasks from "Project of [outstanding mathematician of 18th ...
4
votes
7answers
553 views
F# remove imperative code - quick help
I'm new to functional world and appreciate help on this one.
I want to SUPERCEDE ugly imperative code from this simple function, but don't know how to do it.
What I want is to randomly pick some ...
3
votes
6answers
547 views
Is there a functional algorithm which is faster than an imperative one?
I'm searching for an algorithm (or an argument of such an algorithm) in functional style which is faster than an imperative one.
I like functional code because it's expressive and mostly easier to ...
3
votes
5answers
346 views
Are programs in functional languages more likely to have stack overflows?
I am starting to learn ocaml, and am really appreciating the power of recursion in the language. However, one thing that I am worried about is stack overflows.
If ocaml uses the stack for function ...
2
votes
4answers
102 views
Is there a standardized way to transform functional code to imperative code?
I'm writing a small tool for generating php checks from javascript code, and I would like to know if anyone knows of a standard way of transforming functional code into imperative code?
I found this ...
1
vote
1answer
46 views
How to make mouse events handling easier?
Sometimes I have to implement a feature like customized drag & drop. The code may goes like this:
bool mouse_down = false;
Vec2 mouse_pos;
void on_mouse_down() {
mouse_down = true;
mouse_pos ...
1
vote
3answers
123 views
For which purposes is F# preferred to other languages and what are its strength? [closed]
Hallo everybody,
I would like to know what is the purpose of the F# language, what are the contexts where it is preferred to other languages and why. For instance, what are typical applications that ...
1
vote
2answers
118 views
Fascinated by FP but still think imperative, how do I think functional?
Like most ppl, I started with and still do a lot of imperative code(mostly Java, Ruby, Javascript).
I've never been a big fan of OO, either because I never understood it properly or because I don't ...
0
votes
1answer
48 views
What's the expression equivalent of the Assignment statement called?
In imperative programming, using statements, you do stuff like:
a = 10
b = a * 2
print a # 20
I have been thinking that the equivalent, in expressions, should be something like this:
print ...