| [TOC](Readme.md) [Prev](ranges.md) [Next](lists.md) |
| _Types ~~and~~ are Values_ |
| CUE numbers have arbitrary precision. |
| Also there is no unsigned integer type. |
| CUE defines the following predefined identifiers to restrict the ranges of |
| integers to common values. |
| int16 >=-32_768 & <=32_767 |
| uint32 >=0 & <=4_294_967_296 |
| int32 >=-2_147_483_648 & <=2_147_483_647 |
| uint64 >=0 & <=18_446_744_073_709_551_615 |
| int64 >=-9_223_372_036_854_775_808 & <=9_223_372_036_854_775_807 |
| int128 >=-170_141_183_460_469_231_731_687_303_715_884_105_728 & |
| <=170_141_183_460_469_231_731_687_303_715_884_105_727 |
| uint128 >=0 & <=340_282_366_920_938_463_463_374_607_431_768_211_455 |