select_indices 3.0.1-alpha

Iterators for taking multiple shared/exclusive references from a slice
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod one_to_one;
pub use one_to_one::*;

mod immutable;
pub use immutable::*;

mod mutable;
pub use mutable::*;

pub mod prelude {
    pub use crate::{ SelectIndices, SelectIndicesMut };
    
    #[cfg(feature = "rayon")]
    pub use crate::{ ParSelectIndices, ParSelectIndicesMut };
}