Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for negative start index in Slice#[start, count] #14778

Open
wants to merge 3 commits into
base: master
Choose a base branch
from

Conversation

ysbaddaden
Copy link
Contributor

@ysbaddaden ysbaddaden commented Jul 4, 2024

Allows slice[-3, 3] to return the last 3 elements of the slice, for example, similar to how Array#[-start, count] behaves, with the difference that Slice returns exactly count elements, while Array returns up to count elements.

Introduces a couple changes:

  • negative start now returns from the end of the slice instead of returning nil/raising IndexError
  • negative count now raises ArgumentError instead of returning nil/raising IndexError

I believe the current behavior is buggy (unexpected result, underspecified documentation), but this can be considered a breaking change.

refs #14775

Copy link
Member

@straight-shoota straight-shoota left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

suggestion: Describe this additional behaviour in the API docs.

slice1 = slice[1, 2]?
slice1.should_not be_nil
slice1 = slice1.not_nil!
slice1.size.should eq(2)
slice1.to_unsafe.should eq(slice.to_unsafe + 1)
Copy link
Contributor Author

@ysbaddaden ysbaddaden Jul 4, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Note: I added tests to verify that the subslice is pointing to the same memory as the original slice, and not returning a copy. This is the expected behavior, but we didn't check it.

@straight-shoota straight-shoota added this to the 1.14.0 milestone Jul 4, 2024
@straight-shoota straight-shoota changed the title Slice#[start, count]: support negative start Add support for negative start index in Slice#[start, count] Jul 4, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants