Type Alias doc_chunks::Range
source · pub type Range = Range<usize>;
Expand description
Range based on usize
, simplification.
Aliased Type§
struct Range {
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).