Converts a tuple of tuples into a tuple of all elements.
namespace kumi::result
{
template<product_type Tuple>
struct flatten;
template<product_type Tuple>
using flatten_t = typename flatten<Tuple>::type;
}
constexpr auto flatten(Tuple const &ts)
Converts a tuple of tuples into a tuple of all elements.
Definition: flatten.hpp:35