E.V.E
v2022.03.00
eve::integral_real_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 integral_real_scalar_value<T> is satisfied if and only if T is scalar_value and integral_real_value

Examples

  • int
  • unsigned int

Concept definition

template<typename T>
concept eve::integral_real_scalar_value = real_scalar_value<T> && std::integral<element_type_t<T>>
Specify that a type represents a scalar value.
Definition: vectorizable.hpp:168
Specify that a type represents a scalar value.
Definition: vectorizable.hpp:144