Blaze  3.6
TypeList.h
Go to the documentation of this file.
1 //=================================================================================================
33 //=================================================================================================
34 
35 #ifndef _BLAZE_UTIL_TYPELIST_TYPELIST_H_
36 #define _BLAZE_UTIL_TYPELIST_TYPELIST_H_
37 
38 
39 namespace blaze {
40 
41 //=================================================================================================
42 //
43 // CLASS TYPELIST
44 //
45 //=================================================================================================
46 
47 //*************************************************************************************************
118 template< typename... Ts >
119 struct TypeList
120 {};
121 //*************************************************************************************************
122 
123 } // namespace blaze
124 
125 #endif
Namespace of the Blaze C++ math library.
Definition: Blaze.h:58
Implementation of a type list.The TypeList class template represents a list of data types of arbitrar...
Definition: TypeList.h:119