Since lambda expressions require GCC version > 4.4: what is the most elegant or fastest (yet not too 'dirty') way of porting code containing a couple of lambda expressions with reference-bound variables to pre-C++0x code?

Can this be done in a semi automated way using templates/macros?

link|improve this question

feedback

2 Answers

up vote 6 down vote accepted

Maybe you should take a look at boost::lambda. This should do what you are looking for.

link|improve this answer
+1. I used boost::lambda a little, but I found it quite awkward in some ways. You can't directly use methods on the lambda args. For example you can't do sort(v.begin(), v.end(), _1.size() < _2.size()) but you can do sort(v.begin(), v.end(), f(_1) < f(_2) ). Maybe there is something I missed ... – Aaron McDaid Jun 27 '11 at 16:43
1  
As of Boost 1.47 (which is currently in beta and will be released within the next couple weeks), Boost.Lambda is officially deprecated and replaced by Boost.Phoenix v3, so Boost.Phoenix is a better recommendation at this point. – ildjarn Jun 27 '11 at 16:50
1  
@Aaron : Boost.Phoenix contains lazy wrappers for all standard library containers and algorithms, so that would look like sort(v.begin, v.end(), size(_1) < size(_2)) without any additional code. – ildjarn Jun 27 '11 at 16:52
@ildjarn: I did not realize this up to now. Thanks for the hint. – mkaes Jun 28 '11 at 8:07
feedback

(Disclaimer: I'm linking to my own site.)

About a year ago, I put a few useful macros on a a blog post of mine. I don't know how portable it is, and it's pretty limited. But for simple expressions, it works well.

Note that I haven't found much use for it myself, so it can't be that good :-)

sort(vs.begin(), vs.end(),
YALM(bool,vector<int>&,vector<int>&,return l.size() < r.size()  )
);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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