E.V.E  0.1-beta
eve::integral_scalar_value Concept Reference

#include <eve/concept/vectorizable.hpp>

Concept definition

template<typename T>
concept eve::integral_scalar_value = scalar_value<T> && std::integral<T>
Specify that a type represents an integral scalar value.
Definition: vectorizable.hpp:83
Specify that a type represents a scalar value.
Definition: vectorizable.hpp:70

Detailed Description

Specify that a type represents an integral scalar value.

The concept integral_scalar_value<T> is satisfied if and only if T satisfies eve::scalar_value<T> and std::integral<T>.

Examples

  • std::int32_t