E.V.E
v2022.09.01
eve::unsigned_scalar_value Concept Reference

Specify that a type represents a scalar value. More...

#include <eve/concept/vectorizable.hpp>

Detailed Description

Specify that a type represents a scalar value.

The concept unsigned_scalar_value<T> is satisfied if and only if T is unsigned and scalar_value

Examples

  • std::uint32_t

Concept definition

template<typename T>
concept eve::unsigned_scalar_value = scalar_value<T> && std::unsigned_integral<T>
Specify that a type represents a scalar value.
Definition: vectorizable.hpp:71
Specify that a type represents a scalar value.
Definition: vectorizable.hpp:109