4 releases
0.7.1 | Mar 27, 2022 |
---|---|
0.6.3 | Feb 8, 2021 |
0.1.0 |
|
#5 in #retain
80 downloads per month
Used in 4 crates
(via broccoli)
11KB
280 lines
A crate that provides the user with two fast "vec-like" vecs that are backed by
a single vec. The caveat is that the operations like push and truncate
may rearrange the order of the other vec in an unspecified way.
Also provides a retain_mut_unordered
function to both the regular Vec
as well as
the two "vec-like" vecs provided by this crate.
lib.rs
:
A crate that provides the user with two fast "vec-like" vecs that are backed by
a single vec. The caveat is that the operations like push and truncate
may rearrange the order of the other vec in an unspecified way.
Also provides a retain_mut_unordered
function to both the regular Vec
as well as
the two "vec-like" vecs provided by this crate.