Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion spec/API_specification/indexing.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ This specification does not require "clipping" out-of-bounds slice indices. This
The following ranges for the start and stop values of a slice must be supported. Let `n` be the axis (dimension) size being sliced. For a slice `i:j:k`, the behavior specified above should be implemented for the following:

- `i` or `j` omitted (`None`).
- `-n <= i <= max(0, n - 1)`.
- `-n <= i <= n`.
- For `k > 0` or `k` omitted (`None`), `-n <= j <= n`.
- For `k < 0`, `-n - 1 <= j <= max(0, n - 1)`.

Expand Down