#vec #remove #drain #vector

no-std vecrem

Cursor-like structure for fast iterative removing of elements from a vec

1 unstable release

0.1.0 Jan 7, 2021

#304 in No standard library

Download history 164/week @ 2023-12-23 135/week @ 2023-12-30 285/week @ 2024-01-06 246/week @ 2024-01-13 204/week @ 2024-01-20 303/week @ 2024-01-27 150/week @ 2024-02-03 241/week @ 2024-02-10 412/week @ 2024-02-17 251/week @ 2024-02-24 274/week @ 2024-03-02 261/week @ 2024-03-09 314/week @ 2024-03-16 275/week @ 2024-03-23 304/week @ 2024-03-30 183/week @ 2024-04-06

1,099 downloads per month
Used in 6 crates (2 directly)

Custom license

19KB
270 lines

vecrem

CI status documentation (master) documentation (docs.rs) crates.io LICENSE

Cursor-like helper which allows removing elements from vector without moving the tail every time.

[dependencies]
vecrem = "0.1"

Compiler support: requires rustc 1.36+


lib.rs:

Cursor-like helper which allows removing elements from vector without moving the tail every time.

Vec::remove comparison

If you'll use common Vec::remove to remove only some elements starting from the head, you'll have bad times because it will copy a lot of elements:

vec's memory: [0, 1, 2, 3, 4]

> vec.remove(0);
vec's memory: [-, 1, 2, 3, 4]
vec's memory: [1, 2, 3, 4, -] // copy of 4 elements (the whole tail)

> vec.remove(1);
vec's memory: [1, -, 3, 4, -]
vec's memory: [1, 3, 4, -, -] // copy of 2 elements

> vec.remove(2);
vec's memory: [1, 3, -, -, -]

Whereas Removing uses swaps:

vec's memory: [0, 1, 2, 3, 4]
rem's ptr:     ^

> let rem = vec.removing();
> rem.next().unwrap().remove();
vec's memory: [-, 1, 2, 3, 4]
rem's ptr:        ^

> rem.next().unwrap();
vec's memory: [1, -, 2, 3, 4] // one copy of 1
rem's ptr:           ^

> rem.next().unwrap().remove();
vec's memory: [1, -, -, 3, 4]
rem's ptr:              ^

> rem.next().unwrap();
vec's memory: [1, 3, -, -, 4] // one copy of 3
rem's ptr:                 ^

> rem.next().unwrap().remove();
vec's memory: [1, 3, -, -, -]

no_std support

This crate supports #![no_std] but requires alloc (we are working with vec after all)

No runtime deps