5#ifndef INCLUDE_GUARD_ARENE_BASE_ARENE_BASE_TYPE_LIST_APPLY_EACH_HPP_
6#define INCLUDE_GUARD_ARENE_BASE_ARENE_BASE_TYPE_LIST_APPLY_EACH_HPP_
18template <
class TypeList,
template <
class...>
class ToApply>
25template <
template <
class...>
class TypeList,
typename... Types,
template <
class...>
class ToApply>
26struct apply_each<TypeList<Types...>, ToApply> {
28 using type = TypeList<ToApply<Types>...>;
34template <
class TypeList,
template <
class...>
class ToApply>
35using apply_each_t =
typename apply_each<TypeList, ToApply>::type;
Definition apply_all.hpp:14
Definition array_exceptions_disabled.cpp:11
Copyright 2026, Toyota Motor Corporation.
Definition array_exceptions_disabled.cpp:10