| 40 | #include "testtypes.h" |
| 41 | |
| 42 | template <size_t Offset, class V, class Iterator> V test_tuples_gather(const Iterator &it) |
| 43 | { |
| 44 | return V([&](auto i) { return it[i][Offset]; }); |
| 45 | } |
| 46 | |
| 47 | template <size_t Offset, class V, class Iterator> |
| 48 | V test_tuples_gather_epilogue(const Iterator &it, const size_t remaining) |
nothing calls this directly
no outgoing calls
no test coverage detected