Advertisement
Guest User

Untitled

a guest
Mar 21st, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. | Type | Range of values | Description | Size, byte |
  2. | --- | --- | --- | --- |
  3. | utf8String | | UTF8 string | x |
  4. | asciiString | | ascii string | 1 symbol - 1 byte |
  5. | int8 | -128 to 127 | | 1 |
  6. | int16 | -32768 to 32767 | | 2 |
  7. | int32 | -2147483648 to 2147483647 | | 4 |
  8. | uint8 | 0 to 255 | | 1 |
  9. | uint16 | 0 to 65535 | | 2 |
  10. | uint32 | 0 to 4294967295 | | 4 |
  11. | float32 | 1.2x10<sup>-38</sup> to 3.4x10<sup>38</sup> | | 4 |
  12. | float64 | 5.0x10<sup>-324</sup> to 1.8x10<sup>308</sup> | | 8 |
  13. | boolean | | | 1 |
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement