Skip to content

Potential documentation gap in impl Index<Range<usize>> for [T] #121568

Open
@pezcore

Description

@pezcore

Location

Index::index

Summary

In Rust, if you attempt to index a slice or array with a "backwards" Range<usize> , the program panics:

let arr = [0,1,2,3,4,5,6];
let slice = &arr[4..1]; // panic: slice index starts at 4 but ends at 1 

This behavior is unsurprising, but not obvious: a reasonable alternative behavior would be to just return the empty slice &[]. This is what python does.

The documentation for Index::index states that the indexing operation "May panic if the index is out of bounds", but doesn't define what it means to be "out of bounds". I'd argue that in this example, the Range 4..1 is actually not out-of-bounds for an array of size 7 because both 4 and 1 are less than 7 and therefore, by the letter of the documentation, the panic behavior here is wrong and returning the empty slice &[] is a more reasonable behavior to expect than panicking.

I feel like the documentation should make explicitly clear that this panics if either of the following are true:

  1. range.end > slice.len()
  2. range.end < range.start

Also the documentation should make clear that this does panic, not just that it might, because surely this panic is not UB.

Metadata

Metadata

Assignees

Labels

A-docsArea: Documentation for any part of the project, including the compiler, standard library, and toolsT-libsRelevant to the library team, which will review and decide on the PR/issue.

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions