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

Specify that a type represents a plain scalar value The concept plain_scalar_value<T> is satisfied if and only if the translation of T is an instance of any non-bool, non-long double, arithmetic types. More...

#include <eve/concept/scalar.hpp>

Detailed Description

Example Types

  • float
  • int

Concept definition

template<typename T>
concept eve::plain_scalar_value = detail::is_plain<translate_t<T>>()
Specify that a type represents a plain scalar value The concept plain_scalar_value<T> is satisfied if...
Definition scalar.hpp:48