|
struct | blaze::IsEven< N > |
| Compile time check whether a compile time constant expression is even.This value trait tests whether the given integral value N is an even value. In case the value is even, the value member enumeration is set to 1, the nested type definition Type is TrueType, and the class derives from TrueType. Otherwise value is set to 0, Type is FalseType, and the class derives from FalseType. More...
|
|
struct | blaze::IsFalse< C > |
| Compile time check whether a compile time constant expression evaluates to false.This value trait tests whether the given compile time constant C evaluates to false. In case the value is false, the value member enumeration is set to 1, the nested type definition Type is TrueType, and the class derives from TrueType. Otherwise value is set to 0, Type is FalseType, and the class derives from FalseType. More...
|
|
struct | blaze::IsMultipleOf< M, N > |
| Compile time check for a multiplicative relationship of two integral values.This value trait tests whether the first given integral value M is a multiple of the second integral value N (i.e. if , where x is any positive integer in the range ). In case the value is a multiple of N, the value member enumeration is set to 1, the nested type definition Type is TrueType, and the class derives from TrueType. Otherwise value is set to 0, Type is FalseType, and the class derives from FalseType. More...
|
|
struct | blaze::IsOdd< N > |
| Compile time check whether a compile time constant expression is odd.This value trait tests whether the given integral value N is an odd value. In case the value is odd, the value member enumeration is set to 1, the nested type definition Type is TrueType, and the class derives from TrueType. Otherwise value is set to 0, Type is FalseType, and the class derives from FalseType. More...
|
|
struct | blaze::IsPowerOf< B, N > |
| Compile time check for a power relationship of integral values to a given base.This value trait tests whether the given integral value N is a power of the base B according to the equation , where x is any positive integer in the range . In case the value is a power of B, the value member enumeration is set to 1, the nested type definition Type is TrueType, and the class derives from TrueType. Otherwise value is set to 0, Type is FalseType, and the class derives from FalseType. More...
|
|
struct | blaze::IsTrue< C > |
| Compile time check whether a compile time constant expression evaluates to true.This value trait tests whether the given compile time constant C evaluates to true. In case the value is true, the value member enumeration is set to 1, the nested type definition Type is TrueType, and the class derives from TrueType. Otherwise value is set to 0, Type is FalseType, and the class derives from FalseType. More...
|
|