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
extract code path shared between FromIterator and Extend
Previously FromIterator specialization called with_capacity() and
then delegated to Extend which called reserve().
The reserve() is only needed when extending. This should reduce the
amount of generated IR.
0 commit comments