ClumpedView

Type Alias ClumpedView 

Source
pub type ClumpedView<'a, S> = Clumped<S, &'a [usize]>;
Expand description

A view of a Clumped collection.

Aliased Type§

pub struct ClumpedView<'a, S> {
    pub chunks: ClumpedOffsets<&'a [usize]>,
    pub data: S,
}

Fields§

§chunks: ClumpedOffsets<&'a [usize]>

This can be either offsets of a uniform chunk size, if chunk size is specified at compile time.

§data: S