Funkcja Lambdas i std ::

Próbuję nadrobić zaległości w C ++ 11 i wszystkie nowe wspaniałe funkcje. Trochę utknąłem na lambdach.

Oto kod, który udało mi się uruchomić:

#include <iostream>
#include <cstdlib>
#include <vector>
#include <string>
#include <functional>

using namespace std;

template<typename BaseT, typename Func>
vector<BaseT> findMatches(vector<BaseT> search, Func func)
{
    vector<BaseT> tmp;

    for(auto item : search)
    {
        if( func(item) )
        {
            tmp.push_back(item);
        }
    }

    return tmp;
}

void Lambdas()
{
    vector<int> testv = { 1, 2, 3, 4, 5, 6, 7 };

    auto result = findMatches(testv, [] (const int &x) { return x % 2 == 0; });

    for(auto i : result)
    {
        cout << i << endl;
    }
}

int main(int argc, char* argv[])
{

    Lambdas();

    return EXIT_SUCCESS;
}

Chciałbym mieć to:

template<typename BaseT>
vector<BaseT> findMatches(vector<BaseT> search, function <bool (const BaseT &)> func)
{
    vector<BaseT> tmp;

    for(auto item : search)
    {
        if( func(item) )
        {
            tmp.push_back(item);
        }
    }

    return tmp;
}

Zasadniczo chcę zawęzić możliwe lambdy do sensownego podzbioru funkcji. czego mi brakuje? Czy to możliwe? Używam GCC / G ++ 4.6.

questionAnswers(2)

yourAnswerToTheQuestion