2
votes
2answers
91 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 …
0
votes
1answer
91 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
112 views
using boost::lambda_ to compress whitespaces in a string
Hi,
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>
…
1
vote
3answers
261 views
Problem nesting boost::lambda::bind-s
I have a generic function:
void ImageAlbum::ExpressButtonPressed(
boost::function<
void (
thumb::PhotoPrintThumbnail*,
thumb::PhotoPrintFormat,
thumb::PhotoPrintQuantity
…
3
votes
1answer
131 views
boost lambda collection size evaluation
I have a function of the form:
void DoSomething(const boost::function<bool ()>& condition, other stuff);
This function does some work and returns only when the condition is true. The …
3
votes
2answers
204 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 …
2
votes
5answers
527 views
Boost.Lambda: Insert into a different data structure
I have a vector that I want to insert into a set. This is one of three different calls (the other two are more complex, involving boost::lambda::if_()), but solving this simple case will help me solve …
2
votes
6answers
605 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 )
{
…
4
votes
2answers
431 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 remove …
2
votes
4answers
857 views
c++ boost lambda libraries
What might be the best way to start programming using boost lambda libraries.
