jaulib v1.4.0-2-g788cf73
Jau Support Library (C++, Java, ..)
Loading...
Searching...
No Matches
jau::req::signed_integral Concept Reference

Concept of type-trait std::is_signed and std::is_integral. More...

#include <type_concepts.hpp>

Concept definition

template<typename T>
concept jau::req::signed_integral = std::is_integral_v<T> && std::is_signed_v<T>
Concept of type-trait std::is_signed and std::is_integral.

Detailed Description

Concept of type-trait std::is_signed and std::is_integral.

Definition at line 69 of file type_concepts.hpp.