-
-
Notifications
You must be signed in to change notification settings - Fork 10
Array Slicing #139
Copy link
Copy link
Open
Labels
Requires RewriteA large rewrite will be requiredA large rewrite will be requiredc++Pull requests that update C++ codePull requests that update C++ codedocumentationImprovements or additions to documentationImprovements or additions to documentationenhancementNew feature or requestNew feature or request
Milestone
Metadata
Metadata
Assignees
Labels
Requires RewriteA large rewrite will be requiredA large rewrite will be requiredc++Pull requests that update C++ codePull requests that update C++ codedocumentationImprovements or additions to documentationImprovements or additions to documentationenhancementNew feature or requestNew feature or request
Type
Projects
Status
July 2023
Is your feature request related to a problem? Please describe.
There is currently no way of accessing sub-arrays without manually iterating over them, which is sometimes difficult and inconvenient.
Describe the solution you'd like
Some sort of
ArraySliceobject that can be used as a strided view of an Array object.Describe alternatives you've considered