Skip to main content

orx_parallel/extendable/par_extend_impl/utils/
idx_len.rs

1/// A source index and the length of its chunk.
2pub struct IdxLen {
3    /// Source index.
4    pub idx: usize,
5    /// Chunk length.
6    pub len: usize,
7}