The Gaudi Framework  master (37c0b60a)
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 >
 

Namespaces

 Gaudi
 This file provides a Grammar for the type Gaudi::Accumulators::Axis It allows to use that type from python with a format liks : ( nbins, min, max, title ) where title can be ommited.
 
 Gaudi::details
 

Functions

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

Function Documentation

◆ compose()

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

Definition at line 46 of file compose.h.

46  {
47  return Gaudi::overload( std::forward<lambda_ts>( lambdas )... );
48 }
Gaudi::overload
auto overload(lambda_ts &&... lambdas)
Definition: compose.h:38