select_indices 3.0.0

Iterators for taking multiple shared/exclusive references from a slice
Documentation
use select_indices::prelude::*;
use rayon::prelude::*;

#[test]
fn select_indices()
{
    let mut data = [
        0,0,9,0,0,
        0,0,9,0,0,
        0,0,9,0,0,
        0,0,9,0,0,
        0,0,9,0,0,
    ];

    let indices = [7,17,2,12,22];

    data.par_select_indices_mut(&indices).enumerate().for_each(|(i, x)| {
        *x = i+1;
    });

    assert_eq!(
        data,
        [
            0,0,3,0,0,
            0,0,1,0,0,
            0,0,4,0,0,
            0,0,2,0,0,
            0,0,5,0,0,
        ]
    )
}

#[test]
fn select_indices_unchecked()
{
    let mut data = [
        0,0,9,0,0,
        0,0,9,0,0,
        0,0,9,0,0,
        0,0,9,0,0,
        0,0,9,0,0,
    ];

    let indices = [7,17,2,12,22];

    unsafe { data.par_select_indices_mut_unchecked(&indices) }
        .enumerate().for_each(|(i, x)| {
            *x = i+1;
        });

    assert_eq!(
        data,
        [
            0,0,3,0,0,
            0,0,1,0,0,
            0,0,4,0,0,
            0,0,2,0,0,
            0,0,5,0,0,
        ]
    )
}

#[test]
#[should_panic]
fn out_of_range_panic()
{
    let mut data = [1,2,3];
    let indices = [1,2,3];

    data.par_select_indices_mut(&indices) // 3 is out of bounds: should panic
        .eq(&[2,3,4]);
}

#[test]
#[should_panic]
fn repeated_index_panic()
{
    let mut data = [1,2,3];
    let indices = [1,1];

    data.par_select_indices_mut(&indices) // Repeated index: should panic
        .eq(&[2,2]);
}

#[test]
#[should_panic]
fn repeated_index_from_iter_panic()
{
    let mut data = [1,2,3];
    let index_iter = rayon::iter::repeat(2).take(2);

    data.par_select_with_iter_mut(index_iter)
        .for_each(|x| println!("{x}"));
}