|
|
|||
File indexing completed on 2026-05-06 08:52:37
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
| [ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
|
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |
|