diff options
| author | nodist <kevin.comas.git@gmail.com> | 2026-05-21 15:26:56 -0400 |
|---|---|---|
| committer | nodist <kevin.comas.git@gmail.com> | 2026-05-21 15:26:56 -0400 |
| commit | c71cd186644570eb25c45ded7837b0e7aa54987a (patch) | |
| tree | b13b3700c2d5c7b23ffbe781615448f1ed184425 /docs/type_system/int.md | |
| parent | 83729ca507a3266f3793c3ff2db7229a86e80aa6 (diff) | |
int and float under bits type
Diffstat (limited to 'docs/type_system/int.md')
| -rw-r--r-- | docs/type_system/int.md | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/docs/type_system/int.md b/docs/type_system/int.md deleted file mode 100644 index 97a871f..0000000 --- a/docs/type_system/int.md +++ /dev/null @@ -1,31 +0,0 @@ -# Int - ---- - -```text -Int_bit_size : `alias Enum[.bit8; .bit16; .bit32; .bit64; .bit_any] - -Int_signedness : `alias Enum[.nosign; .unsigned; .signed; .positive] - -Int_representation : `alias Enum[.bool; .mask; .binary; .octal; .decimal; .hex; .utf8; .utf16; .utf32] - -Int[Int_bit_size; Int_signedness; Int_representation] -``` - -## Alias - -```text -Bool `alias Int[.bit8; .nosign; .bool] - -Char `alias Int[.bit32; .nosign; .utf8] - -U8 `alias Int[.bit8; .unsigned; .decimal] -U16 `alias Int[.bit16; .unsigned; .decimal] -U32 `alias Int[.bit32; .unsigned; .decimal] -U64 `alias Int[.bit64; .unsigned; .decimal] - -I8 `alias Int[.bit8; .signed; .decimal] -I16 `alias Int[.bit16; .signed; .decimal] -I32 `alias Int[.bit32; .signed; .decimal] -I64 `alias Int[.bit64; .signed; .decimal] -``` |
