Clarify casting between the same size fixed ints

pull/277/head
Yuki Okushi 3 years ago
parent 5d7bec04c8
commit 2df3009309

@ -46,6 +46,7 @@ expression, `e as U2` is not necessarily so.
For numeric casts, there are quite a few cases to consider:
* casting between two integers of the same size (e.g. i32 -> u32) is a no-op
(Rust uses 2's complement for negative values of fixed integers)
* casting from a larger integer to a smaller integer (e.g. u32 -> u8) will
truncate
* casting from a smaller integer to a larger integer (e.g. u8 -> u32) will

Loading…
Cancel
Save