web-dev-qa-db-ja.com

可変テンプレート:グループで引数を展開

2つの引数を取る関数があります。

_template <typename T1, typename T2>
void foo(T1 arg1, T2 arg2)
{ std::cout << arg1 << " + " << arg2 << '\n'; }
_

そして、その引数をペアで転送するべき可変部分:

_template <typename... Args>
void bar(Args&&... args) {
    static_assert(sizeof...(Args) % 2 == 0);

    ( foo( std::forward<Args>(args), std::forward<Args>(args) ), ... );
    // ^ Sends each argument twice, not in pairs
}
_

bar(1,2,3,4)foo(1,2)foo(3,4)を呼び出させたい

それを行う方法はありますか?

16
Fourmet

オーバーロードでそれを達成できます。

template <typename T1, typename T2>
void bar(T1&& arg1, T2&& arg2) {
    foo( std::forward<T1>(arg1), std::forward<T2>(arg2) ); // (until) sends (the last) two arguments to foo
}

template <typename T1, typename T2, typename... Args>
void bar(T1&& arg1, T2&& arg2, Args&&... args) {
    foo( std::forward<T1>(arg1), std::forward<T2>(arg2) ); // sends the 1st two arguments to foo
    bar( std::forward<Args>(args)... );                    // call bar with remaining elements recursively
}

[〜#〜]ライブ[〜#〜]


上記の最小スニペットでは、引数が0または奇数のbarを呼び出すと、一致する関数がないエラーが発生することに注意してください。 static_assertを使用してより明確なコンパイルメッセージが必要な場合は、この snippet から開始できます。

13
songyuanyao

if constexprを使用した単純な再帰:

// print as many pairs as we can
template<class T, class U, class... Args>
void foo(T t, U u, Args&&... args)
{
    std::cout << t << " + " << u << "\n";
    if constexpr(sizeof...(Args) > 0 && sizeof...(Args) % 2 == 0)
        foo(std::forward<Args>(args)...);
}

template<class... Args>
void bar(Args&&... args)
{
    static_assert(sizeof...(Args) % 2 == 0);
    foo(std::forward<Args>(args)...);
}

次のように呼び出します。

bar(1, 2, 3, 4);

デモ

songyanyaoの答え はC++ 17より前のかなり標準的なものだと思います。その後、 if constexpr を使用すると、オーバーロードのトリックを使用する代わりに、ロジックを関数の本体に移動できます。

5
AndyG

n- aryファンクタのC++ 17汎化:

namespace impl
{
    template<std::size_t k, class Fn, class Tuple, std::size_t... js>
    void unfold_nk(Fn fn, Tuple&& Tuple, std::index_sequence<js...>) {
        fn(std::get<k + js>(std::forward<Tuple>(Tuple))...);
    }

    template<std::size_t n, class Fn, class Tuple, std::size_t... is>
    void unfold_n(Fn fn, Tuple&& Tuple, std::index_sequence<is...>) {
        (unfold_nk<n * is>(fn, std::forward<Tuple>(Tuple), 
            std::make_index_sequence<n>{}), ...);
    }
}

template<std::size_t n, class Fn, typename... Args>
void unfold(Fn fn, Args&&... args) {
    static_assert(sizeof...(Args) % n == 0);
    impl::unfold_n<n>(fn, std::forward_as_Tuple(std::forward<Args>(args)...), 
        std::make_index_sequence<sizeof...(Args) / n>{});
}

int main() {
    auto fn = [](auto... args) { 
        (std::cout << ... << args) << ' ';
    };

    unfold<2>(fn, 1, 2, 3, 4, 5, 6);   // Output: 12 34 56
    unfold<3>(fn, 1, 2, 3, 4, 5, 6);   // Output: 123 456
}
2
Evg