Skip to content

Commit

Permalink
Update documentation to reflect changes
Browse files Browse the repository at this point in the history
  • Loading branch information
DeltaRazero committed Feb 16, 2024
1 parent e3db2cf commit c9645e9
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,13 +86,14 @@ The `numio/std.hpp` header provides standardized aliases for common data types.

#### Integer Types

| **Length** | **Signed Type** | **Unsigned Type** |
|------------|-----------------|-------------------|
| 8-bit | `NumIO::i8_IO` | `NumIO::u8_IO` |
| 16-bit | `NumIO::i16_IO` | `NumIO::u16_IO` |
| 24-bit | `NumIO::i24_IO` | `NumIO::u24_IO` |
| 32-bit | `NumIO::i32_IO` | `NumIO::u32_IO` |
| 64-bit | `NumIO::i64_IO` | `NumIO::u64_IO` |
| **Length** | **Signed Type** | **Unsigned Type** |
|------------------|------------------|--------------------|
| 8-bit | `NumIO::i8_IO` | `NumIO::u8_IO` |
| 16-bit | `NumIO::i16_IO` | `NumIO::u16_IO` |
| 24-bit (packed) | `NumIO::i24_IO` | `NumIO::u24_IO` |
| 24-bit (aligned) | `NumIO::i24a_IO` | `NumIO::u24a_IO` |
| 32-bit | `NumIO::i32_IO` | `NumIO::u32_IO` |
| 64-bit | `NumIO::i64_IO` | `NumIO::u64_IO` |

#### Floating-Point Types (IEEE 754)

Expand Down

0 comments on commit c9645e9

Please sign in to comment.