Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
RHistUtils.hxx
Go to the documentation of this file.
1/// \file
2/// \warning This file contains implementation details that will change without notice. User code should never include
3/// this header directly.
4
5#ifndef ROOT_RHistUtils
6#define ROOT_RHistUtils
7
8namespace ROOT {
9namespace Experimental {
10namespace Internal {
11
12template <typename T, typename... Ts>
13struct LastType : LastType<Ts...> {};
14template <typename T>
15struct LastType<T> {
16 using type = T;
17};
18
19} // namespace Internal
20} // namespace Experimental
21} // namespace ROOT
22
23#endif