The Gaudi Framework  v30r3 (a5ef0a68)
compose.h File Reference
#include <utility>
Include dependency graph for compose.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

struct  Gaudi::details::overloaded_t< lambda_ts >
 
struct  Gaudi::details::overloaded_t< lambda_t >
 
struct  Gaudi::details::overloaded_t< lambda_t, more_lambda_ts... >
 

Namespaces

 Gaudi
 Helper functions to set/get the application return code.
 
 Gaudi::details
 

Functions

template<typename... lambda_ts>
auto Gaudi::overload (lambda_ts &&...lambdas)
 
template<typename... lambda_ts>
auto compose (lambda_ts &&...lambdas)
 

Function Documentation

template<typename... lambda_ts>
auto compose ( lambda_ts &&...  lambdas)

Definition at line 77 of file compose.h.

78 {
79  return Gaudi::overload( std::forward<lambda_ts>( lambdas )... );
80 }
auto overload(lambda_ts &&...lambdas)
Definition: compose.h:64