35#ifndef _BLAZE_UTIL_CONSTRAINTS_ARITHMETIC_H_
36#define _BLAZE_UTIL_CONSTRAINTS_ARITHMETIC_H_
61#define BLAZE_CONSTRAINT_MUST_BE_ARITHMETIC_TYPE(T) \
62 static_assert( ::blaze::IsArithmetic_v<T>, "Non-arithmetic type detected" )
80#define BLAZE_CONSTRAINT_MUST_NOT_BE_ARITHMETIC_TYPE(T) \
81 static_assert( !::blaze::IsArithmetic_v<T>, "Arithmetic type detected" )
Header file for the IsArithmetic type trait.