Back to Arangodb

Lambda2: A C++14 Lambda Library

3rdParty/boost/1.78.0/libs/lambda2/doc/html/lambda2.html

3.12.9.4203 B
Original Source
#include <boost/lambda2.hpp>
#include <algorithm>

using namespace boost::lambda2;

int count_even( int const * first, int const * last )
{
    return std::count_if( first, last, _1 % 2 == 0 );
}