-
-
Notifications
You must be signed in to change notification settings - Fork 21.1k
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
Array::insert consistent with Pool*Array::insert #47406
Array::insert consistent with Pool*Array::insert #47406
Conversation
Sorry for the delay reviewing. This looks fine to me, but it should likely be rebased to make sure that it still compiles fine. And I believe the class reference might need to be updated too to take the changes into account in |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Rebased, built & tested locally, this indeed still works with current master. I'll see if any of the docs need changing in a bit.
Thank you, and sorry again for the delay! |
There were some inconsistencies with
Array
andPool*Array
that were resolved a few month sago such as exposing new methods. Another difference is the return value of theinsert
function. This change adds anError
response to theArray::insert
function similar to howPool*Array
haveError
on their insert..