#retain #give #mutable #mutable-borrow #no-std #predicate #reference

deprecated no-std retain_mut

Provide retain_mut method that has the same functionality as retain but gives mutable borrow to the predicate

10 releases

Uses old Rust 2015

0.1.9 May 20, 2022
0.1.7 Feb 25, 2022
0.1.5 Dec 3, 2021
0.1.4 Sep 26, 2021
0.1.0 Nov 28, 2018

#6 in #retain

Download history 163563/week @ 2023-12-05 156271/week @ 2023-12-12 125671/week @ 2023-12-19 79532/week @ 2023-12-26 153731/week @ 2024-01-02 167920/week @ 2024-01-09 183987/week @ 2024-01-16 171543/week @ 2024-01-23 168244/week @ 2024-01-30 159471/week @ 2024-02-06 141002/week @ 2024-02-13 144765/week @ 2024-02-20 151983/week @ 2024-02-27 146188/week @ 2024-03-05 143858/week @ 2024-03-12 116111/week @ 2024-03-19

588,899 downloads per month
Used in 344 crates (4 directly)

MIT license

11KB
111 lines

RetainMut

This crate has been deprecated. Rust 1.61 stabilized retain_mut for Vec and VecDeque, so you can use them directly. This crate is no longer maintained.

This crate provides trait RetainMut which provides retain_mut method for Vec and VecDeque.

retain_mut is basically the same as retain except that it gives mutable reference of items to the predicate function.

Since there is no reason retain couldn't have been designed this way, this crate basically just copies the code from std with minor changes to hand out mutable reference. The code these impls are based on can be found in code comments of this crate.

This was probably a historical mistake in Rust library, that retain should do this at the very beginning. See rust-lang/rust#25477.

From Rust 1.58, an unstable retain_mut method has been added to the std, see rust-lang/rust#90829. Once it gets stabilized, you can simply remove this crate.

Examples

Vec

let mut vec = vec![1, 2, 3, 4];
vec.retain_mut(|x| { *x *= 3; *x % 2 == 0 });
assert_eq!(vec, [6, 12]);

VecDeque

let mut deque = VecDeque::from(vec![1, 2, 3, 4]);
deque.retain_mut(|x| { *x *= 3; *x % 2 == 0 });
assert_eq!(deque, [6, 12]);

No runtime deps