From c71cd186644570eb25c45ded7837b0e7aa54987a Mon Sep 17 00:00:00 2001 From: nodist Date: Thu, 21 May 2026 15:26:56 -0400 Subject: int and float under bits type --- docs/type_system/int.md | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 docs/type_system/int.md (limited to 'docs/type_system/int.md') 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] -``` -- cgit v1.2.3