This repository has been archived by the owner on Jun 19, 2021. It is now read-only.
Replace some uses of Vec
with SmallVec
#45
Labels
Vec
with SmallVec
#45
Currently we use
Vec
for everything, including use cases in which we expect only a few items. This is pretty inefficient asVec
always heap allocates.At some point we should fix this...
The text was updated successfully, but these errors were encountered: