The Gaudi Framework  v30r0 (c919700c)
compose.h File Reference
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

struct  details::composer_t< lambda_ts >
 
struct  details::composer_t< lambda_t >
 
struct  details::composer_t< lambda_t, more_lambda_ts... >
 

Namespaces

 details
 

Functions

template<typename... lambda_ts>
details::composer_t< std::decay_t< lambda_ts >... > compose (lambda_ts &&...lambdas)
 

Function Documentation

template<typename... lambda_ts>
details::composer_t<std::decay_t<lambda_ts>...> compose ( lambda_ts &&...  lambdas)

Definition at line 54 of file compose.h.

55 {
56  return {std::forward<lambda_ts>( lambdas )...};
57 }