Yeah, sorry, missed the initial value!On Tue, Jan 20, 2009 at 2:53 PM, Maxim Koshelev <chuchelo@gmail.com> wrote:> The Lambda version would be similar, just replacing the outer bind withthis std::accumulate return complicated lambda function, but not int value :-)
> infix notation
>
> #include "boost/lambda/lambda.hpp"
> #include "boost/lambda/bind.hpp"
>
> using namespace boost::lambda;
>
> std::accumulate( begin, end, _1 + bind(&A::a, _2 ));
>
> Again untested.
std::accumulate( begin, end, 0, _1 + bind(&A::a, _2 ));