E.V.E
v2023.02.15
eve::plain_scalar_value Concept Reference

Specify that a type represents a plain scalar value. More...

#include <eve/concept/scalar.hpp>

Detailed Description

Specify that a type represents a plain scalar value.

The concept plain_scalar_value<T> is satisfied if and only if T is an instance of any non-bool, non-long double, arithmetic types.

Example Types

  • float
  • int

Concept definition

template<typename T>
concept eve::plain_scalar_value = detail::is_plain<T>()
Specify that a type represents a plain scalar value.
Definition: scalar.hpp:45