orx-parallel 4.0.0

Performant parallel computations with an expressive iterator API.
Documentation
1
2
3
4
5
6
7
/// A source index and the length of its chunk.
pub struct IdxLen {
    /// Source index.
    pub idx: usize,
    /// Chunk length.
    pub len: usize,
}