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 ...
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?
8
votes
1answer
641 views
boost lambda versus phoenix
I recently started looking at boost phoenix, as replacement for lambda.
Is phoenix a full replacement for lambda, or is there some lambda functionality which is not provided by phoenix? is phoenix ...
8
votes
1answer
494 views
Correct use of boost lambda
Consider the following piece of C++0x code:
a_signal.connect([](int i) {
if(boost::any_cast<std::string>(_buffer[i]) == "foo")
{
base_class<>* an_object = new derived_class();
...
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 ...
5
votes
2answers
263 views
Using boost::format in a boost::lambda
For some reason, I fail to use boost::format in a boost::lambda. Here is a (hopefully) compilable simplification of my code :
#include <algorithm>
#include <iomanip>
#include ...
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
379 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 ...
4
votes
2answers
971 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 ...
3
votes
2answers
495 views
C++ boost::lambda::ret equivalent in phoenix
Boost lambda allows to overwrite deduced return type using ret<T> template.
I have tried searching for equivalent in phoenix but could not find one.
Is there an equivalent in phoenix? I know ...
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 ...
3
votes
1answer
270 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
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 ...
3
votes
4answers
2k views
c++ boost lambda libraries
What might be the best way to start programming using boost lambda libraries.
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
4answers
158 views
Boost lambda with shared_ptr
If I have a polymorphic base class called Base as well as classes Derived1 and Derived2 which inherit from Base. I can then use boost::lambda to create a factory of sorts. Something like:
typedef ...
2
votes
1answer
243 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
732 views
Trying to use boost lambda, but my code won't compile
I am trying to use boost lambda to avoid having to write trivial functors.
For example, I want to use the lambda to access a member of a struct or call a method of a class, eg:
#include ...
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 ...
2
votes
3answers
672 views
Problem nesting boost::lambda::bind-s
I have a generic function:
void ImageAlbum::ExpressButtonPressed(
boost::function<
void (
thumb::PhotoPrintThumbnail*,
thumb::PhotoPrintFormat,
thumb::PhotoPrintQuantity
...
2
votes
5answers
1k 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
1k 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 )
{
...
1
vote
2answers
64 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
102 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
124 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
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
2answers
243 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
1answer
165 views
Boost Phoenix (or Boost Lambda) - taking a pointer lazily
Is there a way of taking a pointer of a lazy phoenix value / ref ? If so how ?
1
vote
2answers
251 views
return statement in lambda expression
I created a lambda expression inside my std::for_each call.
In it there is code like this one, but I have building error telling me that
error: expected primary-expression before ‘return’
error: ...
1
vote
2answers
341 views
boost::lambda bind expressions can't get bind to string's empty() to work
I am trying to get the below code snippet to compile. But it fails with:
error C2665: 'boost::lambda::function_adaptor::apply' : none of the 8 overloads could convert all the argument types. ...
1
vote
1answer
796 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
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 ...
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
333 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
354 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 ...
0
votes
1answer
211 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>
...