pub type Range = Range<usize>;Expand description
Range based on usize, simplification.
Aliased Type§
pub struct Range {
pub start: usize,
pub end: usize,
}Fields§
§start: usizeThe lower bound of the range (inclusive).
end: usizeThe upper bound of the range (exclusive).