mirror of https://github.com/kdl-org/kdl.git
add 128-bit ints
This commit is contained in:
parent
93c4400a96
commit
fa3050ccc0
|
|
@ -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
|
||||
|
||||
|
|
|
|||
2
SPEC.md
2
SPEC.md
|
|
@ -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:
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue