diff --git a/src/amdis/common/Apply.hpp b/src/amdis/common/Apply.hpp
index 21e2fef0993dc8a7c5c31095c8eb89a8704afc8a..46073a019068ae688f4905cead95353ad840d433 100644
--- a/src/amdis/common/Apply.hpp
+++ b/src/amdis/common/Apply.hpp
@@ -41,6 +41,13 @@ namespace AMDiS
       return apply(FWD(f), std::forward_as_tuple(args...));
     }
 
+    template <std::size_t N, class Functor>
+    constexpr decltype(auto) apply_indices(Functor&& f)
+    {
+      return Impl_::apply_indices_impl(FWD(f), index_t<0>{},
+          std::make_index_sequence<N>{});
+    }
+
     template <class Functor, std::size_t N>
     constexpr decltype(auto) apply_indices(Functor&& f, index_t<N>)
     {
diff --git a/src/amdis/common/ForEach.hpp b/src/amdis/common/ForEach.hpp
index 7768a5610961eeba266f80355731758400193571..f64d6177ac34de959eb5550f7c9e7e0f1364eb86 100644
--- a/src/amdis/common/ForEach.hpp
+++ b/src/amdis/common/ForEach.hpp
@@ -15,6 +15,17 @@ namespace AMDiS
       void ignored_evaluation(std::initializer_list<T>&&) { /* do nothing */ }
     }
 
+    template <class Functor, class... Args>
+    constexpr void for_variadic(Functor&& f, Args&&... args)
+    {
+      using std::get;
+#if AMDIS_HAS_CXX_FOLD_EXPRESSIONS
+      (f(FWD(args)),...);
+#else
+      Impl_::ignored_evaluation<int>({0, (f(FWD(args)), 0)...});
+#endif
+    }
+
     template <std::size_t... I, class Tuple, class Functor>
     constexpr void for_each(std::index_sequence<I...>, Tuple&& tuple, Functor&& f)
     {