boost :: bind () - как вещь, но для вызовов функций - PullRequest
0 голосов
/ 12 октября 2018

Учитывая boost::bind или std:: эквивалентов, я могу сделать это:

int f(int a, int b)
{
    return a + b;
}

auto f_two = boost::bind(f, 1, 1);

Так что f_two() вернет 2, эффективно вызывая промежуточную функцию, которая вызываетf(1, 1) через какой-либо механизм реализации, возможно, что-то вроде:

double f_two_caller()
{
     return f(stored_arg_1, stored_arg_2);
}

Однако мой вариант использования состоит в том, что я хотел бы связать префиксную функцию, чтобы вместо этого я мог сказать:

auto f_print = boost::bind(printf, "Hello, world!\n");
auto f_print_and_two = boost::bind_with_prefix(f, f_print, 1, 1);

Итак, f_print_and_two() эффективно выполняет:

double f_print_and_two_caller()
{
    f_print(f_print.stored_arg_1);
    return f(stored_arg_1, stored_arg_2);
}

Я уверен, что для этой техники есть подходящее название, которое я мог бы использовать, чтобы найти решение, но я не могу придумать правильноесейчас ...

Ответы [ 3 ]

0 голосов
/ 12 октября 2018

На вашем месте я бы не копировал функциональность bind и просто пошел бы к чему-то вроде этого, что довольно просто:

template<class Pre, class U>
class with_prefix_class{
public:
    template<class V, class W>
    with_prefix_class(V &&v, W &&w) : pre_(std::forward<V>(v)), func_(std::forward<W>(w)){}

    decltype(std::declval<U>()()) operator()(){
        pre_();
        return func_();
    }

private:
    Pre pre_;
    U func_;
};

int f(int a, int b)
{
    return a + b;
}

template<class Pre, class U>
with_prefix_class<Pre, U> with_prefix(Pre &&pre, U &&u){
    return with_prefix_class<Pre, U>(std::forward<Pre>(pre), std::forward<U>(u));
}

int main(int argc, char* argv[]) {
    auto a = with_prefix([](){}, std::bind(f, 5, 3));
    a();
}
0 голосов
/ 13 октября 2018
template<class First, class Second>
struct compose_t {
    First first;
    Second second;
    template<class...Args>
    auto operator()(Args&&...args)
    -> decltype( std::declval<Second&>()( std::declval<First&>()( std::declval<Args>()... ) ) )
    { return second(first( std::forward<Args>(args)... ) ); }
};
template<class First, class Second>
compose_t<typename std::decay<First>::type, typename std::decay<Second>::type>
compose( First&& first, Second&& second ){ return {std::forward<First>(first), std::forward<Second>(second)}; }

это функциональная композиция.

auto f_print = std::bind(printf, "Hello, world!\n");

auto f_print_and_two = std::bind( compose(f, f_print), 1, 1 );

int main() {
    f_print_and_two();
}

и done .

Обратите внимание, что композиция функций может быть объединена в цепочку.Вы даже можете написать переменную compose функцию, основанную на вышеупомянутом.

0 голосов
/ 12 октября 2018

Я думаю, из вашего описания, это то, что вы ищете:

#include <cstdio>
#include <tuple>
#include <utility>
#include <functional>

template<class F, class PrefixF, class...Args>
auto wrap_call_prefix(F&& f, PrefixF&& pf, Args&&...args)
{
    return [f = std::forward<F>(f), 
            pf = std::forward<PrefixF>(pf),
            args = std::make_tuple(std::forward<Args>(args)...)]
            {
                pf();
                return std::apply(f, args);
            };
}

int main()
{
    auto add = [](auto x, auto y) { return x + y; };
    auto f_print = std::bind(printf, "Hello, world!\n");

    auto f_print_and_two_caller = wrap_call_prefix(add, f_print, 1, 2);

    printf("%d\n", f_print_and_two_caller());
}

std::apply - это c ++ 17.

...