#include <tlx/meta/index_sequence.hpp>
#include <tuple>
Go to the source code of this file.
|
| template<typename Functor> |
| auto | call_stack (const Functor &functor) |
| | Base case for the chaining of functors.
|
| template<typename Functor, typename... MoreFunctors> |
| auto | call_stack (const Functor &functor, const MoreFunctors &... rest) |
| | Recursive case for the chaining of functors.
|
| template<typename Input, typename Functor> |
| static auto | make_function_stack (const Functor &functor) |
| | Function-style construction of a FunctionStack.
|