Skip to content

Commit 9b66575

Browse files
authored
Unrolled build for rust-lang#117039
Rollup merge of rust-lang#117039 - scottmcm:clarify-get-unchecked, r=cuviper Clarify UB in `get_unchecked(_mut)` Inspired by rust-lang#116915, it was unclear to me what exactly "out-of-bounds index" means in `get_unchecked`. One could [potentially](https://rust.godbolt.org/z/hxM764orW) interpret it that `get_unchecked` is just another way to write `offset`, but I think `get_unchecked(len)` is supposed to be UB even though `.offet(len)` is well-defined (as is `.get_unchecked(..len)`), so write that more directly in the docs. **libs-api folks**: Can you confirm whether this is what you expect this to mean? And is the situation any different for `<*const [T]>::get_unchecked`?
2 parents 0f44eb3 + 545175c commit 9b66575

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

library/core/src/slice/mod.rs

+10
Original file line numberDiff line numberDiff line change
@@ -640,6 +640,11 @@ impl<T> [T] {
640640
/// Calling this method with an out-of-bounds index is *[undefined behavior]*
641641
/// even if the resulting reference is not used.
642642
///
643+
/// You can think of this like `.get(index).unwrap_unchecked()`. It's UB
644+
/// to call `.get_unchecked(len)`, even if you immediately convert to a
645+
/// pointer. And it's UB to call `.get_unchecked(..len + 1)`,
646+
/// `.get_unchecked(..=len)`, or similar.
647+
///
643648
/// [`get`]: slice::get
644649
/// [undefined behavior]: https://doc.rust-lang.org/reference/behavior-considered-undefined.html
645650
///
@@ -675,6 +680,11 @@ impl<T> [T] {
675680
/// Calling this method with an out-of-bounds index is *[undefined behavior]*
676681
/// even if the resulting reference is not used.
677682
///
683+
/// You can think of this like `.get_mut(index).unwrap_unchecked()`. It's
684+
/// UB to call `.get_unchecked_mut(len)`, even if you immediately convert
685+
/// to a pointer. And it's UB to call `.get_unchecked_mut(..len + 1)`,
686+
/// `.get_unchecked_mut(..=len)`, or similar.
687+
///
678688
/// [`get_mut`]: slice::get_mut
679689
/// [undefined behavior]: https://doc.rust-lang.org/reference/behavior-considered-undefined.html
680690
///

0 commit comments

Comments
 (0)