Lokathor / tinyvec

Just, really the littlest Vec you could need. So smol.
https://docs.rs/tinyvec
Apache License 2.0
648 stars 49 forks source link

ArrayVec should have try_extend to go with try_push, try_insert, and try_append #163

Open leo60228 opened 2 years ago

leo60228 commented 2 years ago

This seems like a logical extension of the existing functionality. Of course, you could manually do the bounds check, but that's error-prone and in performance-sensitive applications could be concerning.

Lokathor commented 2 years ago

I'm not against it, but I wonder if you can convince std to put this on vec in nightly