E.V.E
v2023.02.15
 
Loading...
Searching...
No Matches
eve::product_scalar_value Concept Reference

Specify that a type represents a product type made of scalars The concept product_scalar_value<T> is satisfied if and only if T is a kumi::product_type containing only eve::plain_scalar_value or eve::logical_scalar_value. More...

#include <eve/concept/scalar.hpp>

Detailed Description

Example Types

  • kumi::tuple<float,int>
  • kumi::tuple<logical<double>, char>

Concept definition

template<typename T>
concept eve::product_scalar_value = detail::scalar_tuple<T>()
Specify that a type represents a product type made of scalars The concept product_scalar_value<T> is ...
Definition: scalar.hpp:97