E.V.E
v2022.09.01
eve::floating_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 floating_real_scalar_value<T> is satisfied if and only if T is scalar_value and floating_real_value

Examples

  • float
  • double

Concept definition

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