Primitive data type for 16-bit signed integers.
You can use this data type to store integers that are between -32,768 and 32,767 in value. That is, you can use
int16 to store signed integers that can be represented in 16 bits. The default value for an
int16 is 0 (zero).
See also:
int,
int8,
int32,
int64,
uint8,
uint16,
uint,
uint64.