summaryrefslogtreecommitdiff
path: root/docs/type_system/bit.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/type_system/bit.md')
-rw-r--r--docs/type_system/bit.md4
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/type_system/bit.md b/docs/type_system/bit.md
index 26d5a98..b5ffed3 100644
--- a/docs/type_system/bit.md
+++ b/docs/type_system/bit.md
@@ -7,7 +7,7 @@ A sequence of bits that can fit into a general register
```text
SIZE_FLAGS : BIT_ANY | BIT8 | BIT16 | BIT32 | BIT64
-REPRESENTATION_FLAGS : INT | INT_UNSIGNED | INT_SIGNED | FLOAT |
+REPRESENTATION_FLAGS : NUMBER | INT | INT_UNSIGNED | INT_SIGNED | FLOAT |
UTF8 | UTF16 | UTF32 |
BOOL |
TYPE
@@ -28,6 +28,8 @@ typedef struct {
# Alias
```text
+Number `alias Bit[[BIT_ANY | NUMBER]]
+
Int `alias Bit[[BIT_ANY | INT]]
Int_unsiged `alias Bit[[BIT_ANY | INT_UNSIGNED]]