PrevUpHomeNext

kpp::unsigned_integral


---- kpp::unsigned_integral << Basic Concepts << Type System << Kpp c++ ----

kpp::unsigned_integral is a c++ concept of kpp c++ library. It is used for constraint a c++ unsigned integral type.

kpp::unsigned_integral Sig:

template <typename type_t00>
concept unsigned_integral = ...;

include

#include <kpp/types.hpp>

c++ example

#include <kpp/types.hpp>

static_assert(kpp::unsigned_integral<unsigned long>);

int main()
{
}

See Also

kpp::integral

kpp::floating_point

kpp::real_number

Back

Up










Deck

Kpp Home


PrevUpHomeNext