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: usizeThe lower bound of the range (inclusive).
end: usizeThe upper bound of the range (exclusive).