E.V.E
v2022.03.00
eve::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 scalar_value<T> is satisfied if and only if it is arithmetic or a product type which types satisfies scalar_value themselves.

Examples

  • float
  • std::int32_t

Concept definition

template<typename T>
concept eve::scalar_value = detail::is_scalar_value<T>::value
Specify that a type represents a scalar value.
Definition: vectorizable.hpp:71