Concept Subspace :: sus :: num :: IntegerNumeric

template <class T>
concept IntegerNumeric
requires
UnsignedNumeric<T> || Signed<T>

All Subspace numeric integer types. This includes all safe integer types except uptr which represents pointers. See UnsignedNumeric and UnsignedPointer.