35#ifndef _BLAZE_MATH_CONSTRAINTS_INVERTIBLE_H_
36#define _BLAZE_MATH_CONSTRAINTS_INVERTIBLE_H_
62#define BLAZE_CONSTRAINT_MUST_BE_INVERTIBLE_TYPE(T) \
63 static_assert( ::blaze::IsInvertible_v<T>, "Non-invertible type detected" )
83#define BLAZE_CONSTRAINT_MUST_NOT_BE_INVERTIBLE_TYPE(T) \
84 static_assert( !blaze::IsInvertible_v<T>, "Invertible type detected" )
Header file for the IsInvertible type trait.