関数を実装しようとしていzip
ます。 zip
のパラメータは eachwrapped<Ti>
で、パラメータごとにTi
異なります。
zip
はこれらwrapped<Ti>
の を取り、wrapped<tuple<T1&,T2&,...TN&>>
、つまりtuple
そのパラメータへの参照のラップを生成します。参照はconst
-ness を保持する必要があります。
zip
これは、一般的には機能しない 1 つのパラメーターを使用した最初の試みです。
#include <utility>
#include <tuple>
// implement forward_as_tuple as it is missing on my system
namespace ns
{
template<typename... Types>
std::tuple<Types&&...>
forward_as_tuple(Types&&... t)
{
return std::tuple<Types&&...>(std::forward<Types>(t)...);
}
}
template<typename T>
struct wrapped
{
wrapped(T &&x)
: m_x(std::forward<T>(x))
{}
T m_x;
};
template<typename T>
wrapped<std::tuple<T&&>>
zip(wrapped<T> &&x)
{
auto t = ns::forward_as_tuple(std::forward<T>(x.m_x));
return wrapped<std::tuple<T&&>>(t);
}
int main()
{
wrapped<int> w1(13);
wrapped<int> &ref_w1 = w1;
// OK
zip(ref_w1);
const wrapped<int> &cref_w1 = w1;
// XXX won't compile when passing a const reference
zip(cref_w1);
return 0;
}
の単一バージョンで一般的な可変個のケースを実装する方法はありzip
ますか?