The concept signed_value<T> is satisfied if and only if T satisfies eve::value and the element type satisfies std::is_signed
More...
#include <eve/concept/value.hpp>
template<typename T>
concept eve::signed_value =
value<T> && (std::is_signed_v<translated_element_type_t<T>> || std::same_as<translated_element_type_t<T>, eve::float16_t>)
The concept signed_value<T> is satisfied if and only if T satisfies eve::value and the element type s...
Definition value.hpp:68
The concept value<T> is satisfied if and only if T satisfies either eve::scalar_value or eve::simd_va...
Definition value.hpp:34