Tagged Questions

8
votes
1answer
643 views

boost lambda versus phoenix

I recently started looking at boost phoenix, as replacement for lambda. Is phoenix a full replacement for lambda, or is there some lambda functionality which is not provided by phoenix? is phoenix ...
6
votes
2answers
230 views

Difference between boost::bind, boost::lambda::bind and boost::phoenix::bind

I am trying to understand the difference between these different bind approaches. There is a similar question at boost::bind and boost::phoenix::bind But, if anyone can explain this with examples it ...
4
votes
2answers
971 views

Boost phoenix or lambda library problem: removing elements from a std::vector

I recently ran into a problem that I thought boost::lambda or boost::phoenix could help be solve, but I was not able to get the syntax right and so I did it another way. What I wanted to do was remove ...
3
votes
2answers
497 views

C++ boost::lambda::ret equivalent in phoenix

Boost lambda allows to overwrite deduced return type using ret<T> template. I have tried searching for equivalent in phoenix but could not find one. Is there an equivalent in phoenix? I know ...
2
votes
1answer
244 views

How to use a phoenix expression with boost::transform_iterator?

<Update> As usual for me, the question was a wrong one. The actual question is: why doesn't transform_iterator use the conventional result_of<> metafunction to determine the return type, ...
2
votes
6answers
1k views

boost lambda or phoenix problem: using std::for_each to operate on each element of a container

I ran into a problem while cleaning up some old code. This is the function: uint32_t ADT::get_connectivity_data( std::vector< std::vector<uint8_t> > &output ) { ...
1
vote
1answer
104 views

functional programming techniques for generating objects on the heap

There is example of code which generates N objects of class A on the heap: #include <vector> #include <iostream> #include <algorithm> #include <boost/shared_ptr.hpp> #include ...
1
vote
1answer
166 views

Boost Phoenix (or Boost Lambda) - taking a pointer lazily

Is there a way of taking a pointer of a lazy phoenix value / ref ? If so how ?