#pragma once #include "math/matrix/forward.h" namespace math { namespace matrix { template struct is_matrix { static const constexpr bool value = false; }; template struct is_matrix> { static const constexpr bool value = true; }; template struct is_matrix> { static const constexpr bool value = true; }; }}