35#ifndef _BLAZE_MATH_CONSTRAINTS_VECREPEATEXPR_H_
36#define _BLAZE_MATH_CONSTRAINTS_VECREPEATEXPR_H_
61#define BLAZE_CONSTRAINT_MUST_BE_VECREPEATTEXPR_TYPE(T) \
62 static_assert( ::blaze::IsVecRepeatExpr_v<T>, "Non-vector repeater expression type detected" )
81#define BLAZE_CONSTRAINT_MUST_NOT_BE_VECREPEATEXPR_TYPE(T) \
82 static_assert( !::blaze::IsVecRepeatExpr_v<T>, "Vector repeater expression type detected" )
Header file for the IsVecRepeatExpr type trait class.