---- kpp::integral << Basic Concepts << Type System << Kpp c++ ----
kpp::integral is a c++ concept of kpp c++ library. It is used for constraint a c++ integral type.
c++ integral group is joined by unsigned integrals, signed integrals, character types, and boolean types.
kpp::integral Sig:
template <typename type_t00> concept integral = ...;
#include <kpp/types.hpp>
#include <kpp/types.hpp> static_assert(kpp::integral<int>); int main() { }