pi_vec_remain 0.2.1

vec remain range
Documentation
  • Coverage
  • 25%
    1 out of 4 items documented0 out of 3 items with examples
  • Size
  • Source code size: 8.0 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 258.1 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 8s Average build duration of successful builds.
  • all releases: 7s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • GaiaWorld/pi_arr
    3 0 1
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • github:gaiaworld:dev zmaxleo

pi_arr

Crate Github Docs

Multi thread safe array structure, auto-expansion array. All operations are lock-free.

Examples

set an element to a arr and retrieving it:

let arr = pi_arr::Arr::new();
arr.set(0, 42);
assert_eq!(arr[0], 42);

The arr can be shared across threads with an Arc:

use std::sync::Arc;

fn main() {
    let arr = Arc::new(pi_arr::Arr::new());

    // spawn 6 threads that append to the arr
    let threads = (0..6)
        .map(|i| {
            let arr = arr.clone();

            std::thread::spawn(move || {
                arr.set(i, i);
            })
        })
        .collect::<Vec<_>>();

    // wait for the threads to finish
    for thread in threads {
        thread.join().unwrap();
    }

    for i in 0..6 {
        assert!(arr.iter().any(|(_, &x)| x == i));
    }
}

Elements can be mutated through fine-grained locking:

use std::sync::{Mutex, Arc};

fn main() {
    let arr = Arc::new(pi_arr::Arr::new());

    // insert an element
    arr.set(0, Mutex::new(1));

    let thread = std::thread::spawn({
        let arr = arr.clone();
        move || {
            // mutate through the mutex
            *arr[0].lock().unwrap() += 1;
        }
    });

    thread.join().unwrap();

    let x = arr[0].lock().unwrap();
    assert_eq!(*x, 2);
}