fitzgen / bumpalo

A fast bump allocation arena for Rust
https://docs.rs/bumpalo
Apache License 2.0
1.36k stars 111 forks source link

Implement `FromIteratorIn` for `Box<'a, [A]>` #138

Closed konsumlamm closed 2 years ago

konsumlamm commented 2 years ago

Currently, Box has a from_iter_in method. While Box<'a, [A]> cannot implement FromIterator (as the documentation says), it can implement FromIteratorIn, which was added in #125.