mccolljr / segvec

SegVec data structure for rust. Similar to Vec, but allocates memory in chunks of increasing size.
MIT License
35 stars 5 forks source link

Implement Extend for SegVec #4

Closed mccolljr closed 3 years ago

mccolljr commented 3 years ago

Right now SegVec doesn't implement std::iter::Extend, but there's no reason it shouldn't.