2#include <ossia/detail/config.hpp>
4#include <ossia/detail/for_each.hpp>
6#include <brigand/algorithms/for_each.hpp>
7#include <brigand/algorithms/transform.hpp>
8#include <brigand/sequences/make_sequence.hpp>
18 template <
typename...>
typename Sequence,
template <
typename...>
typename Tuple,
20auto list_of_tuple_to_tuple_of_list(
const Sequence<Tuple<Args...>>& lst)
22 namespace bg = brigand;
25 using res_type = bg::transform<Tuple<Args...>, bg::bind<Sequence, bg::_1>>;
28 using index_list = bg::make_sequence<bg::size_t<0>,
sizeof...(Args)>;
34 for(
const auto& tuple : lst)
36 bg::for_each<index_list>([&](
auto t) {
37 constexpr auto N =
decltype(t)::type::value;
38 std::get<N>(res).push_back(std::get<N>(tuple));