tetl 0.1.0
Embedded Template Library
Loading...
Searching...
No Matches
is_arithmetic.hpp File Reference

Go to the source code of this file.

Classes

struct  is_arithmetic< T >
 If T is an arithmetic type (that is, an integral type or a floating-point type) or a cv-qualified version thereof, provides the member constant value equal true. For any other type, value is false. The behavior of a program that adds specializations for is_arithmetic or is_arithmetic_v (since C++17) is undefined. More...
 

Namespaces

namespace  etl
 

Variables

template<typename T>
constexpr bool is_arithmetic_v = is_integral_v<T> or is_floating_point_v<T>