diff --git a/include/utempl/type_list.hpp b/include/utempl/type_list.hpp index c66adc4..232ec36 100644 --- a/include/utempl/type_list.hpp +++ b/include/utempl/type_list.hpp @@ -48,6 +48,9 @@ consteval auto Reverse(TypeList list) { }(std::make_index_sequence()); }; - +template +consteval auto Transform(TypeList, auto&& f) -> TypeList{}))...> { + return {}; +}; } // namespace utempl