RFC: prevent mapslices from mutating the original array #17266
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This is a broader fix for #17153, making it so that
mapslices
never modifies the input array. It allocates temporary storage and copies each slice into it before calling the user-function.@simonster commented (#17153 (comment)) that this would still be breaking compared to the old behavior (which created a new array with
A[idx...]
on every iteration), but except for "pathalogical functions" (e.g., those whose behavior might depend on the array's pointer address) I confess I fail to see how this is the case.