- Added type alises
This commit is contained in:
Tristan B. Velloza Kildaire 2023-07-08 11:45:09 +02:00
parent 2f3bc7cc3e
commit f49285eb87
2 changed files with 13 additions and 0 deletions

View File

@ -23,6 +23,13 @@ attributes:
| `long` | `64` | signed long (twos complement) |
| `ulong` | `64` | unsigned long |
There are also some types aliases to be aware of:
| Type | Width | Intended interpretation |
|-----------|-----------------------------------------|--------------------------------|
| `size_t` | Value of config entry `types:max_width` | unsigned |
| `ssize_t` | Value of config entry `types:max_width` | signed byte (twos complement) |
#### Decimal
TODO: Add this

View File

@ -21,6 +21,12 @@ Primitive data type are the building blocks of which other more complex types ar
| `long` | `64` | signed long (two's complement) |
| `ulong` | `64` | unsigned long |
There are also some types aliases to be aware of:
| Type | Width | Intended interpretation |
|-----------|------------------------------------------|---------------------------------|
| `size_t` | Value of config entry `types:max_width` | unsigned |
| `ssize_t` | Value of config entry `types:max_width` | signed byte (two's complement) |
#### Decimal