! \brief This constructor builds a \p join_iterator from two iterators. * \param first_begin The beginning of the first range. * \param first_end The end of the first range. * \param second_begin The beginning of the second range. * \param second_end The end of the second range. * \param indices_begin The permutation indices used to order entries * from the two
| 193 | * from the two joined iterators. |
| 194 | */ |
| 195 | join_iterator(const SizesTuple& t1, const Tuple& t2) : t1(t1), t2(t2) {} |
| 196 | |
| 197 | /*! \brief This method returns an iterator pointing to the beginning of |
| 198 | * this joined sequence of permuted entries. |
nothing calls this directly
no outgoing calls
no test coverage detected