Logo ROOT   6.14/05
Reference Guide
Namespaces | Functions
impl_tuple_apply.hxx File Reference
#include "RConfigure.h"
#include <functional>
Include dependency graph for impl_tuple_apply.hxx:
This graph shows which files directly or indirectly include this file:

Namespaces

 ROOT
 Namespace for new ROOT classes and functions.
 
 ROOT::Detail
 
 std::__ROOT
 

Functions

template<class F , class Tuple >
decltype(auto) constexpr std::__ROOT::apply (F &&f, Tuple &&t)
 
template<class F , class Tuple , std::size_t... I>
decltype(auto) constexpr ROOT::Detail::apply_impl (F &&f, Tuple &&t, std::index_sequence< I... >)
 
template<class F , class... Args>
auto ROOT::Detail::INVOKE (F &&f, Args &&... args) -> decltype(std::forward< F >(f)(std::forward< Args >(args)...))
 
template<class Base , class T , class Derived >
auto ROOT::Detail::INVOKE (T Base::*pmd, Derived &&ref) -> decltype(std::forward< Derived >(ref).*pmd)
 
template<class PMD , class Pointer >
auto ROOT::Detail::INVOKE (PMD pmd, Pointer &&ptr) -> decltype((*std::forward< Pointer >(ptr)).*pmd)
 
template<class Base , class T , class Derived , class... Args>
auto ROOT::Detail::INVOKE (T Base::*pmf, Derived &&ref, Args &&... args) -> decltype((std::forward< Derived >(ref).*pmf)(std::forward< Args >(args)...))
 
template<class PMF , class Pointer , class... Args>
auto ROOT::Detail::INVOKE (PMF pmf, Pointer &&ptr, Args &&... args) -> decltype(((*std::forward< Pointer >(ptr)).*pmf)(std::forward< Args >(args)...))
 
template<class F , class... ArgTypes>
decltype(auto) std::__ROOT::invoke (F &&f, ArgTypes &&... args)