一見複雑な問題に悩んでいます。
zip 関数の反復子クラスを作成しようとしています (python のジェネレーター zip 関数を模倣しようとしています)。
私はhttp://ideone.com/c7rm40でクラス全体を持っています
template<size_t I = 0, typename... Tp>
inline typename std::enable_if<(I == sizeof...(Tp)), typename std::tuple<decltype(*Tp)...>>::type
constructImpl(std::tuple<Tp...> const& its) {
core/StarAlgorithm.hpp|550 col 3| error: expected ‘(’ before ‘constructImpl’
core/StarAlgorithm.hpp|550 col 3| error: expected ‘>’ before ‘constructImpl’
core/StarAlgorithm.hpp|550 col 45| error: template argument 2 is invalid
core/StarAlgorithm.hpp|550 col 47| error: expected ‘::’ before ‘{’ token
core/StarAlgorithm.hpp|550 col 47| error: expected identifier before ‘{’ token
core/StarAlgorithm.hpp|550 col 47| error: expected unqualified-id before ‘{’ token
私の質問は、このアプローチは有効ですか? なぜそれが必ずしも間違っているのか、コンパイラーが私に何を求めているのかわかりません。
しかし、それを超えて、私が見逃しているより簡単なアプローチがあれば、それを聞いて大喜びします.