Difference between revisions of "Script/BasicDataTypes"
From SF3
(Created page with "== Basic Data Types == {|class="wikitable" |type | -128 |127 |int8 | -128 |127 |- |int16 | -32,768 |32,767 |- |int | -2,147,483,648 |2,147,483,647 |- |int64 | -9,223,372,036...") |
|||
Line 6: | Line 6: | ||
| -128 | | -128 | ||
|127 | |127 | ||
+ | |- | ||
|int8 | |int8 | ||
| -128 | | -128 |
Revision as of 13:50, 25 August 2016
Basic Data Types
type | -128 | 127 |
int8 | -128 | 127 |
int16 | -32,768 | 32,767 |
int | -2,147,483,648 | 2,147,483,647 |
int64 | -9,223,372,036,854,775,808 | 9,223,372,036,854,775,807 |
uint8 | 0 | 255 |
uint16 | 0 | 65,535 |
uint | 0 | 4,294,967,295 |
uint64 | 0 | 18,446,744,073,709,551,615 |