summaryrefslogtreecommitdiff
path: root/docs/type_system/bit.md
diff options
context:
space:
mode:
authornodist <kevin.comas.git@gmail.com>2026-07-15 20:40:49 -0400
committernodist <kevin.comas.git@gmail.com>2026-07-15 20:40:49 -0400
commit224c245a875a6f28c01e93d037329c708ef81dd4 (patch)
tree7a368ccb80743651d5eb2f4b30a788ef70dae0ee /docs/type_system/bit.md
parent4c008d258f6fd23fd64e2a6b059448748d7f7d24 (diff)
type var definitions
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]]