add 128-bit ints

This commit is contained in:
Kat Marchán 2024-11-27 23:59:09 -08:00
parent 93c4400a96
commit fa3050ccc0
No known key found for this signature in database
GPG Key ID: AEB529C08A3C7E9E
2 changed files with 3 additions and 0 deletions

View File

@ -72,6 +72,7 @@
way.
* Correspondingly, the identifiers `inf`, `-inf`, and `nan` are now syntax
errors.
* `u128` and `i128` have been added as well-known number type annotations.
### KQL

View File

@ -218,6 +218,7 @@ Signed integers of various sizes (the number is the bit size):
* `i16`
* `i32`
* `i64`
* `i128`
Unsigned integers of various sizes (the number is the bit size):
@ -225,6 +226,7 @@ Unsigned integers of various sizes (the number is the bit size):
* `u16`
* `u32`
* `u64`
* `u128`
Platform-dependent integer types, both signed and unsigned: