Back to home page

EIC code displayed by LXR

 
 

    


Warning, file /include/root/ROOT/RHistUtils.hxx was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 /// \file
0002 /// \warning This file contains implementation details that will change without notice. User code should never include
0003 /// this header directly.
0004 
0005 #ifndef ROOT_RHistUtils
0006 #define ROOT_RHistUtils
0007 
0008 namespace ROOT {
0009 namespace Experimental {
0010 namespace Internal {
0011 
0012 template <typename T, typename... Ts>
0013 struct LastType : LastType<Ts...> {};
0014 template <typename T>
0015 struct LastType<T> {
0016    using type = T;
0017 };
0018 
0019 } // namespace Internal
0020 } // namespace Experimental
0021 } // namespace ROOT
0022 
0023 #endif