xentara-utils v1.2.1
Xentara utilities library
Loading...
Searching...
No Matches
xentara::utils::tools::UnsignedIntegral Concept Reference

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

#include <tools/Concepts.hpp>

Concept definition

template<typename Type>
Determines if a type is an integral type, but not a bool or a special character type.
Definition Concepts.hpp:18
Determines if a type is a signed integral type, but not a bool or a special character type.
Definition Concepts.hpp:26
Determines if a type is an integral type, but not a bool or a special character type.
Definition Concepts.hpp:34

Detailed Description

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

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

See also
std::unsigned_integral, Integral