xentara-utils v2.0.4
The Xentara Utility Library
Loading...
Searching...
No Matches
xentara::utils::tools::Arithmetic Concept Reference

Determines if a type is an arithmetic type, but not a bool or a special character type. More...

#include <xentara/utils/tools/Concepts.hpp>

Concept definition

template<typename Type>
Determines if a type is an arithmetic type, but not a bool or a special character type.
Definition Concepts.hpp:72
Determines if a type is an integral type, but not a bool or a special character type.
Definition Concepts.hpp:48
T make_unique(T... args)

Detailed Description

Determines if a type is an arithmetic type, but not a bool or a special character type.

This concept is equivalent to the type trait std::is_arithmetic, but does not include possibly CV-qualified bool, char, wchar_t, char8_t, char16_t, or char32_t.

See also
std::is_arithmetic, IsArithmetic