Tagged Questions

9
votes
2answers
160 views

another copy algorithm

I have two vectors. vector<Object> objects; vector<string> names; These two vectors are populated and have the same size. I need some algorithm which does assignment to the object ...
6
votes
2answers
229 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 ...
5
votes
1answer
201 views

What is the difference between boost::bind and boost::lambda::bind?

I can see that there are two different bind libraries for Boost, one "standalone", that can be used by including boost/bind.hpp, and another by including boost/lambda/bind.hpp. What's the difference ...
4
votes
2answers
109 views

boost::lambda expression fails to compile because of instantiation of abstract template arg. Any explanation and/or work arounds?

I'm in the process of learning boost::lambda and I've managed to create a situation that I can't resolve with what I know so far. Apparently in the bowels of boost::lambda, the following example ...
4
votes
3answers
381 views

How to write a boost::lambda functor that returns a new functor

How can I write a lambda expression with two placeholders, one for the callable object, and one for the function argument, such that supplying the callable object first returns a unary function. In ...
3
votes
2answers
672 views

boost::function and boost::bind are cool, but what is really cool about boost::lambda?

On Page 175 Paragraph 1 of Effective C++ Meyers has this to say about generalized functors and binding: I find what tr1::function lets you do so amazing, it makes me tingle all over. If you're ...
2
votes
3answers
119 views

Using boost::lambda with an STL container

The complete code is on https://gist.github.com/1341623 I'd like to sort an index array (or vector) for another vector, such that the array is ordered by the index of the other vector. However, the ...
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
2answers
161 views

How do I create a simple boost::lambda function?

I'm trying to create a simple function that makes a simple test and return true or false. myfunct = (_3 < someArray[i]); When I do this, I get this error : error: no match for 'operator<' in ...
2
votes
1answer
447 views

Calling a member function using boost::lambda

I am learning the boost::lambda library and for that I wrote this sample code to convert an vector<A> into vector<int> by extracting the value from A object. class A { public: A(int ...
2
votes
2answers
225 views

Usage of boost lambdas

I am new to boost and trying to write some simple programs to understand it. Here in the following piece of code I am trying to fill an array with random numbers. Here is my code: using namespace ...
1
vote
2answers
65 views

problems with C++ boost lambda and ==-operator

There is: template<typename T> bool any(::Ref<Iterator<T> > i, boost::function<bool(T)> pred) { // ... } And: template<typename T> struct Ref { // ... }; ...
1
vote
1answer
103 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
6answers
125 views

boost function and lambda to wrap a function

I want to convert this simple code: void setZComp(Imath::V3f& pt) { pt.z = 0.0; } int myfunc() { ... std::vector<Imath::V3f> vec(5,Imath::V3f(1.0,1.0,1.0)); ...
1
vote
2answers
245 views

using Boost.Fusion list of function

I am trying to apply list of function object to some value in the following code. But this code cause err boost_1_44\boost\fusion\algorithm\iteration\detail\for_each.hpp(82): error C2064: How to ...
1
vote
2answers
1k views

boost lambda::bind return type selection

I would like to call a member through lambda::bind. Unfortunately I have got two members with the same name but different return types. Is there a way to help the lambda::bind to deduce the right ...
1
vote
1answer
797 views

What is wrong with this boost::lambda use?

Why is this boost::lambda expression not working? boost::function<bool (boost::uint64_t, boost::uint64_t&, unsigned int, float)> myFunct = boost::lambda::_3 < 1; I get theses ...
1
vote
1answer
764 views

C++: how to use std::less<int> with boost::bind and boost::lambda?

I am trying to lean boost::bind, boost::lambda libraries and how they can be used with STL algorithms. Suppose I have vector of int-string pairs which is sorted by int key. Then a place to insert a ...
0
votes
1answer
102 views

boost lambda with a vector of shared pointers

Below is a slightly modified code from one good example how to copy values fro one vector of strings to another vector of objects. (see: another copy algorithm ) #include <algorithm> #include ...
0
votes
3answers
334 views

lambda bind problem?

I am a new beginner with boost. And here is my test code, using namespace boost::lambda; std::vector<std::string> strings; strings.push_back("Boost"); strings.push_back("C++"); ...
0
votes
2answers
355 views

Boost lambda: Invoke method on object

I'm looking at boost::lambda as a way to to make a generic algorithm that can work with any "getter" method of any class. The algorithm is used to detect duplicate values of a property, and I would ...