Transpose a tuple of tuples by shifting elements in their transposed position.
namespace kumi::result
{
template<product_type Tuple>
struct transpose;
template<product_type Tuple>
using transpose_t = typename transpose<Tuple>::type;
}
constexpr auto transpose(Tuple const &t)
Transpose a tuple of tuples by shifting elements in their transposed position.
Definition: transpose.hpp:35