Primitive data type for unsigned integers.
You can use this data type to store integers that are between 0 and 4,294,967,295 in value. That is, you can use
uint to store unsigned integers that can be represented in 32 bits. The default value for a
uint is 0 (zero).
uint32 is a synonym for this type.
See also:
int,
int8/
uint8,
int16/
uint16, and
int64/
uint64.