2
votes
0answers
15 views
When choosing a functional programming language for use with LLVM, what are the trade-offs?
Let's assume for the moment that C++ is not a functional programming language. If you want to write a compiler using LLVM for the back-end, and you want to use a functional progra …
0
votes
3answers
33 views
Tips for optimizing sql commands worrying about legacy
The concern with the legacy of the SQL statements is a constant in my head. Especially when SCRUM is used, where the code has no owner, that is, all must be able to repair and main …
2
votes
2answers
67 views
How far should I take referential transparency?
I am building a website using erlang, mnesia, and webmachine. Most of the documentation I have read praises the virtues of having referentially transparent functions.
The problem …
1
vote
1answer
37 views
Erlang and Java interfacing
I am particularly interested in knowing the performance implications of the Erlang component when doing this kind of interfacing.
After learning about Erlang I thought that it mig …
0
votes
4answers
55 views
Iterating through a list of lists?
I have Items from a certain source (populated from somewhere else):
public class ItemsFromSource{
public ItemsFromSource(string name){
this.SourceName = name;
Items …
-2
votes
1answer
173 views
What kind of bird is this? [closed]
What kind of bird is this?
Is it any good at functional programming or rather misusing F# with its imperative programming features?
2
votes
5answers
134 views
Concurrent map/foreach in scala
I have an iteration vals: Iterable[T] and a long-running function without any relevant side effects: f: (T => Unit). Right now this is applied to vals in the obvious way:
vals.for …
6
votes
15answers
414 views
Ways to get the middle of a list in Haskell?
I've just started learning about Functional Programming, using Haskel.
I'm slowly getting through Erik Meijer's lectures on Channel 9 (I've watched the first 4 so far) and in the …
4
votes
4answers
96 views
Extending an existing type in OCaml
I've been doing some OCaml programming lately to learn the language and to get more acquainted with functional programming. Recently, I've started to think that I'd like to be abl …
2
votes
2answers
127 views
Help translating this Java codeblock to Clojure?
I'm getting my feet wet with Clojure, and trying to get used to functional programming.
I've been translating various imperative functions from other languages into their Clojure …
10
votes
8answers
233 views
Examples of functional programs ‘writing themselves’ via type analysis
(Background: I've been thinking about doing a presentation on F# and functional programming. From experience, I think that the 'wow' factor of pattern matching and type inference i …
2
votes
4answers
76 views
How to do numerical simulation with immutable data in Clojure?
I'm using Clojure and I need to run a small simulation. I have a vector of length n (n is usually between 10 and 100) that holds values. On each simulation round (maybe 1000 rounds …
3
votes
5answers
147 views
How difficult is it to learn functional programming languages?
Given that a persona has extensive experience in different imperative programming languages right from C to JAVA. Whats the learning curve for functional programming languages such …
1
vote
1answer
81 views
High-level multithreading/concurrency abstractions for .NET
I just wondered why, unlike Scala, F# or Haskell, the basic .NET framework (as available in C# or VB) seems to have very little native support for higher level concurrency patterns …
3
votes
5answers
223 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] …
