From 2405b5b64f34b686a5ce5e6276bf69af02088e3b Mon Sep 17 00:00:00 2001 From: Karutoh Date: Thu, 20 Nov 2025 16:11:52 -0800 Subject: [PATCH] Update Primitive Data Types --- Primitive-Data-Types.md | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/Primitive-Data-Types.md b/Primitive-Data-Types.md index 7f58195..3ba0a7d 100644 --- a/Primitive-Data-Types.md +++ b/Primitive-Data-Types.md @@ -6,8 +6,9 @@ # Primitive Data Types -| Integer Primitives | Description | +| Primitives | Description | | --- | --- | +| **Integers** | | UInt_64 | 64-Bit Unsigned Integer | | UInt_32 | 32-Bit Unsigned Integer | | UInt_16 | 16-Bit Unsigned Integer | @@ -16,19 +17,15 @@ | SInt_32 | 32-Bit Signed Integer | | SInt_16 | 16-Bit Signed Integer | | SInt_8 | 8-Bit Signed Integer | -| **Floating Point Primitives** | +| **Floating Points** | | float | A 32-Bit single precision floating point number | | double | A 64-Bit double precision floating point number | | long double | A 80-Bit extended precision floating-point number | - -| Character Primitives | Description | -| --- | --- | +| **Character** | | Char_32 | UTF_32 Character | | Char_16 | UTF_16 Character | | Char_8 | UTF_8 Character | - -| Misc Primitives | Description | -| --- | --- | +| **Misc** | | Byte | A single byte of data, essentially just a UInt_8 | # Related Macros