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
Currently it reserves capacity using `with_capacity`. It then calls
`extend`, which (unnecessarily) calls `reserve`. It then calls `push` N
times, each of which (unnecessarily) does a capacity check.
0 commit comments