We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c85738 commit c4d88d7Copy full SHA for c4d88d7
src/types/numeric.md
@@ -40,3 +40,8 @@ differences between pointers into an object or array and can address every byte
40
within an object along with one byte past the end.
41
42
`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