vote up 2 vote down star
1

I've been looking at the new features in c++0x and it really looks like it will be possible to program in a very functional programming style using it. I've gotten use to using the types List, Seq, Array in f# and I see no reason why their members couldn't be ported into some sort of c++0x template. It looks like microsoft is trying to do that with their STL Algorithm class. What problems of advantages do you see in using c++0x vs something like f# for a mixed functional programming style? Maybe the Boost guys will make a new functional once c++0x comes out.

flag

2  
The reference you point to (STL Algorithm, that is not a class BTW) is about a header that is already present and standard in C++. That is, nothing new. The new C++ standard just eases the creation of the functors passed to the already existing algorithms. – dribeas Jul 6 at 21:32
@dribeas cool, thanks – gradbot Jul 6 at 22:06

3 Answers

vote up 7 vote down check

The biggest problem with trying to program in a functional style in C++ is that it does not support tail recursion. In a functional language you don't have to worry about stack explosion when you tail recurse correctly, but in C++ you always have to worry about that. Therefore, many "functional" type algorithms will be clumsy or heavy.

link|flag
vote up 0 vote down

I imagine that it would be… interesting… to implement certain optimizations common to functional languages in C++0x (like common subexpression elimination).

link|flag
vote up 4 vote down

You might find this interesting:

http://smellegantcode.wordpress.com/2009/01/26/linq-to-c0x/

link|flag
Ooh, interesting indeed. Nice work. – jalf Jul 24 at 20:34
Thanks! A starting point for a full implementation would be boost's range and iterator libraries, some combination of the two. – Earwicker Jul 24 at 21:05

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.