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
0002
0003
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 }
0020 }
0021 }
0022
0023 #endif