#vec #drain-filter #drain-where

vec-drain-where

alternative Vec::drain_filter impl

2 stable releases

Uses old Rust 2015

1.0.1 Oct 11, 2019
1.0.0 Aug 27, 2018

#1015 in Algorithms

Download history 61/week @ 2023-12-15 54/week @ 2023-12-22 27/week @ 2023-12-29 43/week @ 2024-01-05 51/week @ 2024-01-12 32/week @ 2024-01-19 44/week @ 2024-01-26 34/week @ 2024-02-02 63/week @ 2024-02-09 95/week @ 2024-02-16 73/week @ 2024-02-23 77/week @ 2024-03-01 92/week @ 2024-03-08 60/week @ 2024-03-15 76/week @ 2024-03-22 125/week @ 2024-03-29

360 downloads per month
Used in 12 crates (3 directly)

MIT/Apache

15KB
222 lines

vec-drain-where

A alternate Vec::drain_filter implementation, slightly diverging from the std's implementation.

This crate provides an extension trait adding a e_drain_where method (the e_ prefix is used to prevent name collisions with std as the currently drain_filter might be stabilized as drain_where).

e_drain_where as one large difference to drain filter. It doesn't run to completion when dropped and can as such be "early stopped" from the outside by stopping the iteration an dropping the iterator.

The reason why Vec::drain_filter does run the drain to completion on drop is that it can be quite confusing. E.g. the code:

vec.drain_filter(|x|x.should_be_removed()).any(|x|x.had_fatal_error())

Would not necessary do what it's expected to do, i.e. it would drain thinks until it finds any drained value with had_fatal_error() == true and then would stop draining (with e_drain_where).

But running to completion on drop is also tricky/dangerous e.g. it can lead easily to thinks like panic's on drop and as such double panics, while drop on panic behavior for Vec::drain_filter might still change before stabilization, this crate completely avoids the problem at cost of making it easy to accidentally stop the draining to early.

Documentation

Documentation can be viewed on docs.rs. (at least once it's published ;=) )

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

No runtime deps