Open
Description
opened on Feb 27, 2018
Right now, usize
and isize
are "guaranteed" to be at least a byte long, but nothing more. It seems unlikely that Rust will support 8-bit targets in the future, but this is what the TryFrom
implementations indicate.
A lot of people assume that usize
will be at least 32 bits but this is not true for all platforms. I think that the docs should be clarified to make people more aware of this behaviour.
Activity