1
vote
2answers
82 views
Php: functional style, light-weight alternatives to the separation of concerns in OO MVC patterns?
The problem:
I have a legacy php app that is coded in no particular style (some OO, function libraries, some templates, no templates), which I am slowly rewriting, cleaning up, an …
1
vote
4answers
88 views
Reduce a set of functions over a value?
Hi,
I'm looking for a clean, idiomatic way to do a "backwards reduce" in Clojure.
I've got
(def fns '(fn1 fn2 fn3))
(def val 42)
I'd like to obtain (fn3 (fn2 (fn1 val))), an …
5
votes
5answers
119 views
functional programming: immutable data structure efficiency
Hi, I don't understand, how FP compilers make the code dealing with immutable data structures fast, not blow up stack, etc.
For example, insert operation in tree, it has to copy t …
2
votes
6answers
258 views
Rewriting C# code in F#
Just messing about with F# and I was trying to create a basic Lagrange Interpolation function based on this C# version (copied from a C++ wiki entry):
double Lagrange(double[] …
2
votes
6answers
207 views
Functional Programming for Basic Algorithms
How good is 'pure' functional programming for basic routine implementations, e.g. list sorting, string matching etc.?
It's common to implement such basic functions within the base …
1
vote
1answer
24 views
Rails functional test file access
I need to access a file in a Rails functional test in test/functional/main_controller_test.rb. If I mention the file within "", and the included file is placed in test/ directory, …
0
votes
1answer
50 views
Can Rails integration tests hit another server for OpenID auth?
Can Rails integration tests hit another server for OpenId authentication?
When my Rails application, running on http://localhost:3000/, redirects to http://localhost:1123/server f …
2
votes
6answers
168 views
right rotate a List in Erlang
Hi, I am getting myself familiar to Sequential Erlang (and the functional programming thinking) now. So I want to implement the following two functionality without the help of BIF. …
5
votes
6answers
505 views
Erlang vs OCaml (best niche to fit)
Hi I'd like to pick up one FP language (it's always a pain when you work in a position that does not require you learn much), and after doing some research, I felt Erlang and OCaml …
4
votes
3answers
174 views
Clojure: How to generate a ‘trie’?
Given the following...
(def inTree
'((1 2)
(1 2 3)
(1 2 4 5 9)
(1 2 4 10 15)
(1 2 4 20 25)))
How would you transform it to this trie?
(def outTrie
'(1
(2 ()
…
10
votes
15answers
496 views
Looking for a functional language
I'm a scientist working mostly with C++, but I would like to find a better language. I'm looking for suggestions, I'm not even sure my "dream language" exist (yet), but here's my w …
2
votes
3answers
174 views
Complex iterations in haskell
Hi
I have this complex iterations program I wrote in TI Basic to perform a basic iteration on a complex number and then give the magnitude of the result:
INPUT “SEED?”, C
INPUT “I …
5
votes
3answers
250 views
Is there a modeling language for the functional programming paradigm?
UML is a standard aimed at the modeling of software which will be written in OO languages, and goes hand in hand with Java. Still, could it possibly be used to model software meant …
0
votes
1answer
24 views
Fine-grained sandboxing
Scenario: a program running in a byte code virtual machine like Java or Python, wants to evaluate (by compiling on the fly to byte code and then running) a function whose code was …
4
votes
3answers
169 views
How do I refer to std::sin(const valarray<double> &) ?
I'm having trouble with some valarray function pointer code:
double (*fp)(double) = sin;
valarray<double> (*fp)(const valarray<double> &) = sin;
The first compil …
