Hi everyone,
I am trying to make my own version of combine so that it works also with std::tuples. Someone on slack suggested that the zip iterator should be able to handle it properly. My attempt however fails when trying to use the metafunction tuple_of_references::type for the std::tuple of iterators. This is what I tried (https://godbolt.org/z/Ymjtvn):
(Please excuse any style problems, this is my first post)
namespace myns
{
using boost::iterators::zip_iterator;
using boost::iterator_range;
template<typename IterTuple>
class combined_range
: public iterator_range