Update Primitive Data Types

2025-11-19 23:50:38 -08:00
parent 4564e67533
commit a1802c660c

@@ -7,35 +7,28 @@
# Primitive Data Types
# Integers
**UInt_64** - 64-Bit Unsigned Integer
**UInt_32** - 32-Bit Unsigned Integer
**UInt_16** - 16-Bit Unsigned Integer
**UInt_8** - 8-Bit Unsigned Integer
**SInt_64** - 64-Bit Signed Integer
**SInt_32** - 32-Bit Signed Integer
**SInt_16** - 16-Bit Signed Integer
**SInt_8** - 8-Bit Signed Integer
- **UInt_64** - 64-Bit Unsigned Integer
- **UInt_32** - 32-Bit Unsigned Integer
- **UInt_16** - 16-Bit Unsigned Integer
- **UInt_8** - 8-Bit Unsigned Integer
- **SInt_64** - 64-Bit Signed Integer
- **SInt_32** - 32-Bit Signed Integer
- **SInt_16** - 16-Bit Signed Integer
- **SInt_8** - 8-Bit Signed Integer
# Floating Point Numbers
**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
- **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
# Characters
**Char_32** - UTF_32 Character
**Char_16** - UTF_16 Character
**Char_8** - UTF_8 Character
- **Char_32** - UTF_32 Character
- **Char_16** - UTF_16 Character
- **Char_8** - UTF_8 Character
# Misc
**Byte** - A single byte of data, essentially just a UInt_8
- **Byte** - A single byte of data, essentially just a UInt_8