Page 74 (PDF page 113):
Table 5.1 - Some basic types
Basic type Range
Byte 8-bit signed two's complement integer (-27 to 27 - 1, inclusive)
Short 16-bit signed two's complement integer (-215 to 215 - 1, inclusive)
Int 32-bit signed two's complement integer (-231 to 231 - 1, inclusive)
Long 64-bit signed two's complement integer (-263 to 263 - 1, inclusive)
Char 16-bit unsigned Unicode character (0 to 216 - 1, inclusive)
-27 to 27 - 1 should be -2^7 to 2^7 -1, the other errors are the same.
NOTE: This is fine in the PDF, so perhaps this is a problem in the MOBI
or EPUB versions.
|