Tagged Questions

17
votes
35answers
2k views

Nested for loops in different languages

Here is a fairly common problem. We have an array of arrays. We'd like to call some function for every combination of elements from the different arrays. Conceptually we'd like to do something like ...
8
votes
5answers
1k views

closures and objects

Functional programming .. is like classic ( Mark Twain's type). While reading another articles about SICP, where people are talking about the great impact closures had on there thinking, i got ...
6
votes
6answers
572 views

How do I code a tree of objects in Haskell with pointers to parent and children?

I've got the following problem: I have a tree of objects of different classes where an action in the child class invalidates the parent. In imperative languages, it is trivial to do. For example, in ...
6
votes
5answers
984 views

What functional language techniques can be used in imperative languages?

Which techniques or paradigms normally associated with functional languages can productively be used in imperative languages as well? e.g.: Recursion can be problematic in languages without ...
3
votes
1answer
499 views

Scala Performance: imperative vs functional style

I'm new to Scala and was just reading Scala By Example. In chapter 2, the author has 2 different versions of Quicksort. One is imperative style: def sort(xs: Array[Int]) { def swap(i: Int, j: ...
2
votes
2answers
226 views

Java v Scala from a concurrency viewpoint

I am kicking off my final year project right now. I am going to be investigating the concurrency approaches from java and scala perspectives. Having come out of a java concurrency module, I can see ...
2
votes
4answers
268 views

Are the implementation details of declarative languages inherently imperative

I'm reading 'Functional Programming' by Tomas Petricek & Jon Skeet and I understand the difference between declarative & imperative programming. What I was wondering is how are the primitive ...
0
votes
0answers
46 views

A Functional-Imperative Hybrid [closed]

Pure functional programming languages do not allow mutable data, but some computations are more naturally/intuitively expressed in an imperative way -- or an imperative version of an algorithm may be ...
0
votes
0answers
56 views

What other cool languages do I not know about, and what are they really good for? [closed]

I recently stumbled on Erlang and Haskell; I admit I am currently in the process of sipping the Kool-Aid of functional programming :) What I find disturbing; however, is that I did not learn about ...