While reading through the documentation of std::numeric_limits I came across the following statement:
Specializations for all integer-class types are also provided. (since C++20)
My question is that what do we mean by integer class types in the above statement. I mean, I know that int is a built in type in C++. And we can provide user-defined class in C++. But I never read about an integer-class type. I tried searching that phrase on google, but didn't find anything related to this.