The boost-lambda tag has no wiki summary.
4
votes
1answer
75 views
What's wrong of this use of boost::lambda::bind?
I'm trying to use boost::lambda::bind() to define a predicate that I pass to the find_if algorithm in Boost.Range. Specifically, I want to search a vector of structures to find the first entry where a ...
0
votes
1answer
25 views
Assign object the return value of boost::lambda::bind?
I would think it could be useful to store a bound lambda function to be used later, yet I haven't seen any examples on the return value of the boost::lambda::bind function being assigned to an object ...
3
votes
1answer
109 views
C++: how to find max_element using boost::range?
I am trying to return an iterator to the largest element in a filtered range. Here is what I have so far:
#include <boost/lambda/lambda.hpp>
#include <boost/range/adaptors.hpp>
#include ...
0
votes
2answers
43 views
Boost lambda recursion?
Can boost::lambda be used recursively?
This doesn't compile:
using namespace boost::lambda;
auto factorial = (_1 == 0) ? 1 : factorial(_1-1);
Is there a suggested workaround?
EDIT: Regarding ...
0
votes
1answer
91 views
How to use boost::lambda to create new object for an existing pointer?
What I want to do is --> create a new object in a new thread.
Something like:
Class* object = 0;
Arg arg;
boost::thread t( lambda::bind( object = lambda::new_ptr< Class >()( boost::ref( arg ) ...
1
vote
2answers
86 views
Setting a member of struct using boost lambda
I am trying to create vector<Wrap> with same values as in v. I tried the below combinations, didn't work!
using namespace std;
struct Wrap
{
int data;
//Other members
};
int main()
{
...
1
vote
3answers
250 views
What functional language approach most readily transfers to Boost Phoenix? [closed]
I am looking to learn functional programming with an am to integrate Boost.phoenix into my project.
What language is most similar so that I can find books that will illustrate functional programming ...
1
vote
0answers
74 views
Use of custom subscript operator with Boost.Lambda
I'm using Visual Studio 2005 and Boost 1.37. I also tested this same code on Visual Studio 2012 Express Desktop and Boost 1.50 without success.
I want to use a Boost.Lambda by accessing a custom ...
0
votes
1answer
76 views
ref() in Boost::Lambda?
What is the equivalent of Boost::Phoenix's ref in Boost::Lambda? I can't find it in the online docs.
#include <algorithm>
#include <string>
#include <boost/lambda/bind.hpp>
using ...
12
votes
3answers
271 views
Does bind() have any advantage (other than compatibility) over C++11 lambdas?
I'm thinking about migrating my code toward using C++11-style lambdas instead of having binds everywhere. But I'm not sure if it's a good idea or not.
Does using e.g. boost::lambda (or ...
1
vote
1answer
142 views
expressing _1.second->pair().first == r in boost::lambda
I've an expression that I need to put in std::transform as callback, but I don't want to write another method for it. I want to express the expression _1.second->pair().first == r to boost::lambda ...
1
vote
1answer
111 views
What is wrong with this boost::lambda::bind usage?
Is there something wrong in this code? I keep getting compilation errors. Basically I want to connect a void returning function to a signal which has a non void return type.
Boost version: Release ...
1
vote
1answer
219 views
How to use boost::is_same in c++ template along with boost::lambda::bind
I'm trying to connect a generic boost::function<void(void)> to many boost::signals2 of varying signature. I'm able to use boot::lambda::bind to do the binding part by passing the return value as ...
3
votes
2answers
256 views
How to use Boost (Lambda?) to make std::sort() easier?
Let's say I have
struct Value { int foo(); };
size_t *begin = ...,
*end = ...;
If I want to sort a bunch of Value indices in C++03, I have to write something tedious like this:
struct ...
0
votes
1answer
115 views
using boost lambda with compound expressions
I have a Visual Studio 2008 C++03 application where I would like to use boost::lambda to perform this action:
enum { fooflag = 0x00000001; }
bool IsFooFlagActive( DWORD flags )
{
return ( flags ...
0
votes
1answer
244 views
boost::lambda std::map
I want to simplify my code by using boost::lambda. Here is my code:
// Declare container:
typedef std::map< PageId, Page* > Pages;
Pages m_pages;
// For serialization:
template < class ...
0
votes
1answer
268 views
MSVC and boost::lambda::bind error: T0: standard-argment not allowed
This code compiles fine with GCC and Clang but not with MSVC 2010:
#include <boost/lambda/lambda.hpp>
#include <boost/lambda/bind.hpp>
#include <boost/function.hpp>
#include ...
0
votes
1answer
147 views
Boost.Lambda - dereference placeholder
Is there a way to dereference a placeholder inside lambda expression ?
boost::function<int(MyClass*)> f = _1->myMethod();
f(myObject);
I know I can make a binding:
...
1
vote
2answers
170 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 {
// ...
};
...
6
votes
2answers
964 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 ...
2
votes
3answers
273 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 ...
1
vote
1answer
142 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 ...
0
votes
1answer
233 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 ...
9
votes
2answers
216 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
6answers
545 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));
...
2
votes
4answers
436 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 ...
4
votes
2answers
220 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 ...
1
vote
2answers
172 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
583 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 ...
4
votes
3answers
637 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 ...
2
votes
1answer
250 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 ?
5
votes
1answer
349 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 ...
8
votes
3answers
702 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?
5
votes
2answers
401 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 ...
0
votes
3answers
672 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
1answer
379 views
Copy map to vector
I have to copy certain elements from a std::map into a vector.
It should work like in this loop:
typedef int First;
typedef void* Second;
std::map<First, Second> map;
// fill map
...
1
vote
3answers
359 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: ...
4
votes
1answer
349 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, ...
3
votes
2answers
672 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 ...
9
votes
1answer
1k 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
755 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();
...
1
vote
2answers
486 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. ...
0
votes
2answers
507 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 ...
1
vote
2answers
2k 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 ...
2
votes
2answers
1k 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 ...
3
votes
2answers
942 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 ...
1
vote
1answer
974 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 ...
2
votes
2answers
384 views
How do I create a simple boost::lambda function?
I'm trying to create a simple function that makes a simple test and return true or false.
myfunct = (_3 < someArray[i]);
When I do this, I get this error :
error: no match for 'operator<' in ...
2
votes
1answer
929 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
325 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 ...