diff options
| author | nodist <kevin.comas.git@gmail.com> | 2026-05-22 16:56:03 -0400 |
|---|---|---|
| committer | nodist <kevin.comas.git@gmail.com> | 2026-05-22 16:56:03 -0400 |
| commit | a41e83e6a28d17e41fcf90c4d39003a06fa9ba51 (patch) | |
| tree | a8468d8d3da7148ede5f7d33b66fd49f358e0928 /docs/type_system/bit.md | |
| parent | aa58218da7a3ce3587a768f85323c3ce2212f6b2 (diff) | |
start adding ops to types
Diffstat (limited to 'docs/type_system/bit.md')
| -rw-r--r-- | docs/type_system/bit.md | 7 |
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 `=` |
