@@ -398,39 +398,35 @@ unsafe impl SliceIndex<str> for ops::RangeInclusive<usize> {
398
398
type Output = str ;
399
399
#[ inline]
400
400
fn get ( self , slice : & str ) -> Option < & Self :: Output > {
401
- if * self . end ( ) == usize:: MAX { None } else { ( * self . start ( ) .. self . end ( ) + 1 ) . get ( slice) }
401
+ if * self . end ( ) == usize:: MAX { None } else { self . into_slice_range ( ) . get ( slice) }
402
402
}
403
403
#[ inline]
404
404
fn get_mut ( self , slice : & mut str ) -> Option < & mut Self :: Output > {
405
- if * self . end ( ) == usize:: MAX {
406
- None
407
- } else {
408
- ( * self . start ( ) ..self . end ( ) + 1 ) . get_mut ( slice)
409
- }
405
+ if * self . end ( ) == usize:: MAX { None } else { self . into_slice_range ( ) . get_mut ( slice) }
410
406
}
411
407
#[ inline]
412
408
unsafe fn get_unchecked ( self , slice : * const str ) -> * const Self :: Output {
413
409
// SAFETY: the caller must uphold the safety contract for `get_unchecked`.
414
- unsafe { ( * self . start ( ) .. self . end ( ) + 1 ) . get_unchecked ( slice) }
410
+ unsafe { self . into_slice_range ( ) . get_unchecked ( slice) }
415
411
}
416
412
#[ inline]
417
413
unsafe fn get_unchecked_mut ( self , slice : * mut str ) -> * mut Self :: Output {
418
414
// SAFETY: the caller must uphold the safety contract for `get_unchecked_mut`.
419
- unsafe { ( * self . start ( ) .. self . end ( ) + 1 ) . get_unchecked_mut ( slice) }
415
+ unsafe { self . into_slice_range ( ) . get_unchecked_mut ( slice) }
420
416
}
421
417
#[ inline]
422
418
fn index ( self , slice : & str ) -> & Self :: Output {
423
419
if * self . end ( ) == usize:: MAX {
424
420
str_index_overflow_fail ( ) ;
425
421
}
426
- ( * self . start ( ) .. self . end ( ) + 1 ) . index ( slice)
422
+ self . into_slice_range ( ) . index ( slice)
427
423
}
428
424
#[ inline]
429
425
fn index_mut ( self , slice : & mut str ) -> & mut Self :: Output {
430
426
if * self . end ( ) == usize:: MAX {
431
427
str_index_overflow_fail ( ) ;
432
428
}
433
- ( * self . start ( ) .. self . end ( ) + 1 ) . index_mut ( slice)
429
+ self . into_slice_range ( ) . index_mut ( slice)
434
430
}
435
431
}
436
432
0 commit comments