Skip to content

Commit c4d88d7

Browse files
ehussjoshtriplett
authored andcommitted
Add note clarifying 16-bit support.
1 parent 5c85738 commit c4d88d7

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/types/numeric.md

+5
Original file line numberDiff line numberDiff line change
@@ -40,3 +40,8 @@ differences between pointers into an object or array and can address every byte
4040
within an object along with one byte past the end.
4141

4242
`usize` and `isize` are at least 16-bits wide.
43+
44+
> **Note**: Many pieces of Rust code may assume that pointers, `usize`, and
45+
> `isize` are at least 32-bit and at most 64-bit. As a consequence, 16-bit
46+
> pointer support is limited and may require explicit care and acknowledgment
47+
> from a library to support.

0 commit comments

Comments
 (0)