35#ifndef _BLAZE_MATH_CONSTRAINTS_OPPOSEDVIEW_H_
36#define _BLAZE_MATH_CONSTRAINTS_OPPOSEDVIEW_H_
61#define BLAZE_CONSTRAINT_MUST_BE_OPPOSED_VIEW(T) \
62 static_assert( ::blaze::IsOpposedView_v<T>, "Non-opposed view detected" )
81#define BLAZE_CONSTRAINT_MUST_NOT_BE_OPPOSED_VIEW(T) \
82 static_assert( !::blaze::IsOpposedView_v<T>, "Opposed view detected" )
Header file for the IsOpposedView type trait.