I am learning C++. One of the data members of my classes is supposed to be of type size_t
. Now size_t
is not a built-in primitive type but rather a defined type (as an unsigned value that usually is at least as large as an int) that is heavily used all around C++.
Many of the C++ libraries, such as iostream
or string
will automatically add size_t
to your current scope.
However, my class does not need to include any fancy libraries. As I want to keep it as lean as possible, I only want to include the file responsible for creating size_t
.
Which library is this?