From: Andres Llopis (allopis_at_[hidden])
Date: 2019-12-06 14:44:23


> 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?