Tagged Questions
8
votes
3answers
326 views
How can I use Boost.Bind on compound types?
I have std::map<int, std::pair<short, float> >, and I need to find the minimal short in this map. How can I use boost::bind with std::min_element() for this?
boost::lambda?
6
votes
2answers
226 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 ...
3
votes
2answers
347 views
Boost lambda bewilderment
Why is callback called once only?
bool callback()
{
static bool res = false;
res = !res;
return res;
}
int main(int argc, char* argv[])
{
vector<int> x(10);
bool ...
1
vote
2answers
997 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
763 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 ...