The Gaudi Framework  v38r0 (2143aa4c)
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
 Header file for std:chrono::duration-based Counters.
 
 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