Skip to main content

ChunkQueryRange

Type Alias ChunkQueryRange 

Source
pub type ChunkQueryRange = Range<usize>;
Expand description

Range of query point indices (matches SpatialTensor::chunks ranges).

Aliased Type§

pub struct ChunkQueryRange {
    pub start: usize,
    pub end: usize,
}

Fields§

§start: usize

The lower bound of the range (inclusive).

§end: usize

The upper bound of the range (exclusive).