-
Notifications
You must be signed in to change notification settings - Fork 307
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
Bounds on remove_index
#1442
Comments
That's a good question #967 If I try to reconstruct, I think it's a little bit about the mindset and the whole picture.
I think you have a good point, but if we open this method up to being used on all mutable views, then the full effect of the method has to be explained, that it has taken the 'removed index' and placed it somewhere else. |
I can't tell either - even
We already do explain the full effect: Lines 2984 to 2987 in 492b274
|
While working on some code, I ran across
remove_index
and noticed that it has a bound ofS: DataOwned
, but I'm not sure why?As this method documents, it does not actually change the allocation of the underlying array, and none of its internal methods require
DataOwned
. Can this bound be removed? Or am I missing something?The text was updated successfully, but these errors were encountered: