6 Dec
2019
6 Dec
'19
2:44 p.m.
zip_iterator works with fusion sequences. Make sure you include boost/fusion/adapted/std_tuple.hpp
Also std::get<N>(x), not x.get<N>().
Thanks Mathias, including fusion adapted std tuple kind of works, only remaining issue is that I cannot use the std::get<> overloads with a type instead of an int: https://godbolt.org/z/wGJCp- What could be the problem?