Skip to content

Commit b25c20b

Browse files
authored
Merge pull request #1451 from udoprog/document-ptr-casts
Clarify semantics of the various pointer to pointer casts
2 parents 405242b + 97c9ad1 commit b25c20b

File tree

1 file changed

+27
-8
lines changed

1 file changed

+27
-8
lines changed

src/expressions/operator-expr.md

+27-8
Original file line numberDiff line numberDiff line change
@@ -478,15 +478,20 @@ unsafe {
478478
assert_eq!(values[1], 3);
479479
```
480480

481-
#### Slice DST pointer to pointer cast
481+
#### Pointer-to-pointer cast
482482

483-
For slice types like `[T]` and `[U]`, the raw pointer types `*const [T]`, `*mut [T]`,
484-
`*const [U]`, and `*mut [U]` encode the number of elements in this slice. Casts between
485-
these raw pointer types preserve the number of elements. Note that, as a consequence,
486-
such casts do *not* necessarily preserve the size of the pointer's referent (e.g.,
487-
casting `*const [u16]` to `*const [u8]` will result in a raw pointer which refers to an
488-
object of half the size of the original). The same holds for `str` and any compound type
489-
whose unsized tail is a slice type, such as struct `Foo(i32, [u8])` or `(u64, Foo)`.
483+
`*const T` / `*mut T` can be cast to `*const U` / `*mut U` with the following behavior:
484+
485+
- If `T` and `U` are both sized, the pointer is returned unchanged.
486+
- If `T` and `U` are both unsized, the pointer is also returned unchanged.
487+
In particular, the metadata is preserved exactly.
488+
489+
For instance, a cast from `*const [T]` to `*const [U]` preserves the number of elements.
490+
Note that, as a consequence, such casts do not necessarily preserve the size of the pointer's referent
491+
(e.g., casting `*const [u16]` to `*const [u8]` will result in a raw pointer which refers to an object of half the size of the original).
492+
The same holds for `str` and any compound type whose unsized tail is a slice type,
493+
such as `struct Foo(i32, [u8])` or `(u64, Foo)`.
494+
- If `T` is unsized and `U` is sized, the cast discards all metadata that completes the wide pointer `T` and produces a thin pointer `U` consisting of the data part of the unsized pointer.
490495

491496
## Assignment expressions
492497

@@ -687,3 +692,17 @@ See [this test] for an example of using this dependency.
687692
[_TypeNoBounds_]: ../types.md#type-expressions
688693
[_RangeExpression_]: ./range-expr.md
689694
[_UnderscoreExpression_]: ./underscore-expr.md
695+
696+
<script>
697+
(function() {
698+
var fragments = {
699+
"#slice-dst-pointer-to-pointer-cast": "operator-expr.html#pointer-to-pointer-cast",
700+
};
701+
var target = fragments[window.location.hash];
702+
if (target) {
703+
var url = window.location.toString();
704+
var base = url.substring(0, url.lastIndexOf('/'));
705+
window.location.replace(base + "/" + target);
706+
}
707+
})();
708+
</script>

0 commit comments

Comments
 (0)