You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This release fixes another issue related to setLen. Specifically, if you increased the size of a Vec and then used one of the iterators, it would not iterate over the new slots.
This release fixes an issue regarding the length of a Vec after using setLen. If you increase the size, the number returned by len was correct, but when you set a value in one of the new slots, it was incorrectly incrementing it by one.