35#ifndef _BLAZE_MATH_CONSTRAINTS_SPARSEVECTOR_H_
36#define _BLAZE_MATH_CONSTRAINTS_SPARSEVECTOR_H_
61#define BLAZE_CONSTRAINT_MUST_BE_SPARSE_VECTOR_TYPE(T) \
62 static_assert( ::blaze::IsSparseVector_v<T>, "Non-sparse vector type detected" )
81#define BLAZE_CONSTRAINT_MUST_NOT_BE_SPARSE_VECTOR_TYPE(T) \
82 static_assert( !::blaze::IsSparseVector_v<T>, "Sparse vector type detected" )
Header file for the IsSparseVector type trait.