13#include <seqan3/utility/simd/concept.hpp>
15namespace seqan3::detail
31template <
typename score_type>
32struct alignment_score_matrix_proxy
34 static_assert(arithmetic<score_type> || simd_concept<score_type>,
35 "Value type must either be an arithmetic type or a simd vector type.");
38 score_type & diagonal;
Provides concepts that do not have equivalents in C++20.