timemory 3.3.0
Modular C++ Toolkit for Performance Analysis and Logging. Profiling API and Tools for C, C++, CUDA, Fortran, and Python. The C++ template API is essentially a framework to creating tools: it is designed to provide a unifying interface for recording various performance measurements alongside data logging and interfaces to other tools.
bundle_execute.hpp File Reference
#include "timemory/macros/attributes.hpp"
#include "timemory/variadic/types.hpp"
#include <type_traits>
#include <utility>
+ Include dependency graph for bundle_execute.hpp:
+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  tim::mpl::execution_handler< BundleT, DataT >
 This is an intermediate type that permits operations such as: More...
 
class  tim::mpl::execution_handler< BundleT, void >
 

Namespaces

namespace  tim
 
namespace  tim::mpl
 

Functions

template<typename BundleT , typename FuncT , typename... Args>
auto tim::mpl::execute (BundleT &&_bundle, FuncT &&_func, Args &&... _args, enable_if_t< is_invocable< FuncT, Args... >::value &&!std::is_void< std::result_of_t< FuncT(Args...)> >::value, int >)
 
template<typename BundleT , typename FuncT , typename... Args>
auto tim::mpl::execute (BundleT &&_bundle, FuncT &&_func, Args &&... _args, enable_if_t< is_invocable< FuncT, Args... >::value &&std::is_void< std::result_of_t< FuncT(Args...)> >::value, int >)
 
template<typename BundleT , typename ValueT >
auto tim::mpl::execute (BundleT &&_bundle, ValueT &&_value, enable_if_t<!is_invocable< ValueT >::value, long >)