The Gaudi Framework  v30r1 (5d4f4ae2)
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 55 of file compose.h.

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