New crate: SmallBytes (= SmallVec + impl BufMut)

Hi all, I just published SmallBytes

As we know, SmallVec is a drop-in replacement for Vec, which stores a few array items inline. I wanted to check the performance impact of this switch for a large scientific crate. That crate also relied on the BufMut implementation of Vec, so I had to come up with this small library.

The experiment was not successful, but the crate persists for your convenience.

This topic was automatically closed 90 days after the last reply. We invite you to open a new topic if you have further questions or comments.