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

#include <eve/concept/vectorizable.hpp>

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:70

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