#include <tuple>
#include <utility>
Go to the source code of this file.
|
template<typename Functor, typename Arg> |
auto | vmap_foreach_impl (Functor &&f, Arg &&arg) |
| helper for vmap_foreach: base case
|
|
template<typename Functor, typename Arg, typename... MoreArgs> |
auto | vmap_foreach_impl (Functor &&f, Arg &&arg, MoreArgs &&... rest) |
| helper for vmap_foreach: general recursive case
|
|
template<typename Functor, typename... Args> |
auto | vmap_foreach (Functor &&f, Args &&... args) |
| Call a generic functor (like a generic lambda) for each variadic template argument.
|
|