/// \file RArrayView.h /// \ingroup Base StdExt ROOT7 /// \author Axel Naumann /// \date 2015-09-06 /// \warning This is part of the ROOT 7 prototype! It will change without notice. It might trigger earthquakes. Feedback is welcome! /************************************************************************* * Copyright (C) 1995-2015, Rene Brun and Fons Rademakers. * * All rights reserved. * * * * For the licensing terms see $ROOTSYS/LICENSE. * * For the list of contributors see $ROOTSYS/README/CREDITS. * *************************************************************************/ #ifndef ROOT7_RTupleApply #define ROOT7_RTupleApply #ifdef R__HAS_STD_TUPLE_APPLY #include #elif defined(R__HAS_STD_EXPERIMENTAL_TUPLE_APPLY) #include namespace std { using template constexpr decltype(auto) apply(F&& f, Tuple&& t); } #else # include "ROOT/impl_tuple_apply.h" #endif #endif