There is:

template<typename T>
bool any(::Ref<Iterator<T> > i, boost::function<bool(T)> pred) {
    // ...
}

And:

template<typename T> struct Ref {
     // ...
};

template<typename T> struct Iterator {
     // ...
};

Then I have this call (which errors):

int forworm = 42;
bool x = any<CWorm*>(worms(), (_1 ->* &CWorm::getID) == forworm)

And worms() returns a Ref<Iterator<CWorm*> Ref> and there is int CWorm::getID(); (which is a member function).

This fails with a very lengthy error about invalid operands to binary expression. Part of it:

/usr/local/include/boost/lambda/detail/operator_lambda_func_base.hpp:222:1:{222:1-222:63}{222:1-222:63}: error: invalid operands to binary expression ('typename lambda_functor_base >, tuple >, int (CWorm::*const)() const, null_type, null_type, null_type, null_type, null_type, null_type, null_type, null_type> >::sig >::type' (aka 'member_pointer_caller') and 'int') [3]

Why?

How can I fix it?

If I do it somewhat more verbose, i.e. not via lambdas but I declare another function manually and use boost::bind, it works. I.e. like this:

static bool _wormIdEqual(CWorm* w, int wormId) {
    return w->getID() == wormId;
}

any<CWorm*>(worms(), boost::bind(_wormIdEqual, _1, forworm)))
link|improve this question

Try boost::bind(&CWorm::getID, _1);. – Naveen Jan 11 at 4:17
@Naveen: I don't really know how to use that in combination with ==. Also, isn't this possible to do with boost::lambda? – Albert Jan 11 at 4:22
Note that the operator->* is essentially an "incomplete function call", and canonically returns a function object which must be called afterwards. See this answer of mine for more information. @Aaron's answer may look like the same, but the returned lambda from boost::lambda::bind will properly propagate the arguments and do The Right Thing™. – Xeo Jan 11 at 5:08
feedback

2 Answers

up vote 2 down vote accepted

You should be able to do this:

#include <boost/lambda/bind.hpp>

using boost::lambda::bind;
bool x = any<CWorm*>(worms(), bind(&CWorm::getID, _1) == forworm);

The boost::lambda::bind(&CWorm::getID, _1) behaves just as you hoped (_1 ->* &CWorm::getID) would, and can (lazily) compare for equality against forworm. So it's still very much a lambda function.

link|improve this answer
Edited to make it clearer that you mean the boost::lambda version of bind. – Xeo Jan 11 at 5:09
Also, you can theoretically throw away the boost::lambda stuff, as it's actually superseded by boost::bind, which in turn is again superseded by boost::phoenix::bind. So you could use boost::phoenix::bind together with its placeholders. I don't know if this would be of any benefit here, though. – Xeo Jan 11 at 5:16
And all of that is superseded by C++11's [] lambdas? :-) – Aaron McDaid Jan 11 at 14:29
1  
Most of the time. Sometimes, Boost lambdas are just way more concise, especially since they're polymorphic. – Xeo Jan 11 at 14:32
1  
@Albert, To call a member function, you need an object, you need to know which method you want to call, and you need to know what parameters to pass to the method. a->foo(3) would become something like (a ->* foo_ptr)(3). If you just do a ->* foo_ptr, then this is sort of 'equivalent' to a->foo. But you don't want a->foo, you want a->foo(). i.e. you want the method to be actually called. Bind seems to do the right thing here: bind(&CWorm::getID, _1) will call it with no parameters. If getID took parameters, you could do bind(&CWorm::getID, _1, "param_1", blue, 3) – Aaron McDaid Jan 13 at 1:14
show 5 more comments
feedback

Quote from Boost.Lambda documentation:

Lambda expressions containing function calls, control structures, casts etc. require special syntactic constructs. Most importantly, function calls need to be wrapped inside a bind function. As an example, consider the lambda expression

You are trying to invoke a function in your code so you must use bind() to actually defer the calling of the function. Moreover, it's also cleaner to delay the variable/constant forworm:

int forworm = 42;
bool x = any<CWorm*>(worms(), bind(&CWorm::getID, _1) == var(forworm));

This answer is an enhancement of @Aaron McDaid's answer, it just got too long for a comment.

link|improve this answer
Why is the delaying of the variable cleaner? I esp. want it to be constant and not be changeable. So, not delaying it actually gives more information to the reader, as in that I don't expect any change of the variable. – Albert Jan 13 at 1:58
Then you can stress that by using const_var. It's cleaner because the reader immediately sees that the comparison is evaluated lazily. – dark_charlie Jan 13 at 18:13
feedback

Your Answer

 
or
required, but never shown

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