pub open spec fn slice_range_valid<R: RangeBoundsSpec<usize>>(range: &R, len: nat) -> boolExpand description
{ slice_range_start(range) <= slice_range_end(range, len) <= len }Whether a range normalizes to start <= end <= len, i.e. the condition
under which std’s core::slice::range does not panic.