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.md7
1 files changed, 4 insertions, 3 deletions
diff --git a/docs/type_system/bit.md b/docs/type_system/bit.md
index c787ae9..41a6abd 100644
--- a/docs/type_system/bit.md
+++ b/docs/type_system/bit.md
@@ -11,7 +11,6 @@ Bit_representation `alias Enum[
.numeric; .int; .int_unsiged; .int_signed; .float
.utf8; .utf16; .utf32
.bool
- .mask
]
Bit[Bit_size; Bit_representation]
@@ -46,8 +45,6 @@ F64 `alias Bit[.bit64; .float]
Char `alias Bit[.bit32; .utf8]
Bool `alias Bit[.bit8; .bool]
-
-Mask `alias Bit[.bit64; .mask]
```
# Operators
@@ -70,6 +67,10 @@ Mask `alias Bit[.bit64; .mask]
## Boolean
+### ``true`
+
+### ``false`
+
### Not `!`
### Equal `=`