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 ...
1
vote
2answers
77 views

accessing static members using boost lambda

I am trying to write some simple predicate using boost::lambda and I am getting tons of errors. I checked the documentation and I have some doubt on accessing the static variable std::string::npos in ...
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
212 views

using boost::lambda_ to compress whitespaces in a string

I am using boost::lambda to remove subsequent whitespaces in a string, leaving only one space. I tried this program. #include <algorithm> #include <iostream> #include <string> ...