Search Results

4
votes
2answers
444 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 rem …
2
votes
6answers
621 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 ) { out …
1
vote

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

After a bit of work I came up with this solution: std::transform(chunks.begin(), chunks.end(), back_inserter(tmp), boost::bind(&ADTChunk::get_connectivity_data, _1) ); …