Blaze  3.6
AlwaysTrue.h
Go to the documentation of this file.
1 //=================================================================================================
33 //=================================================================================================
34 
35 #ifndef _BLAZE_UTIL_TYPETRAITS_ALWAYSTRUE_H_
36 #define _BLAZE_UTIL_TYPETRAITS_ALWAYSTRUE_H_
37 
38 
39 //*************************************************************************************************
40 // Includes
41 //*************************************************************************************************
42 
44 
45 
46 namespace blaze {
47 
48 //=================================================================================================
49 //
50 // CLASS DEFINITION
51 //
52 //=================================================================================================
53 
54 //*************************************************************************************************
62 template< typename T >
63 struct AlwaysTrue
64  : public TrueType
65 {};
66 //*************************************************************************************************
67 
68 
69 //*************************************************************************************************
82 template< typename T >
83 constexpr bool AlwaysTrue_v = true;
84 //*************************************************************************************************
85 
86 } // namespace blaze
87 
88 #endif
Generic wrapper for a compile time constant integral value.The IntegralConstant class template repres...
Definition: IntegralConstant.h:72
Namespace of the Blaze C++ math library.
Definition: Blaze.h:58
Type dependent compile time true.This type trait represents a type dependent compile time true....
Definition: AlwaysTrue.h:63
constexpr bool AlwaysTrue_v
Auxiliary variable template for the AlwaysTrue type trait.The AlwaysTrue_v variable template provides...
Definition: AlwaysTrue.h:83
Header file for the IntegralConstant class template.