@@ -420,7 +420,7 @@ impl<T: ?Sized> *const T {
420
420
unsafe { self . cast :: < u8 > ( ) . offset ( count) . with_metadata_of ( self ) }
421
421
}
422
422
423
- /// Calculates the offset from a pointer using wrapping arithmetic.
423
+ /// Adds a signed offset to a pointer using wrapping arithmetic.
424
424
///
425
425
/// `count` is in units of T; e.g., a `count` of 3 represents a pointer
426
426
/// offset of `3 * size_of::<T>()` bytes.
@@ -482,7 +482,7 @@ impl<T: ?Sized> *const T {
482
482
unsafe { intrinsics:: arith_offset ( self , count) }
483
483
}
484
484
485
- /// Calculates the offset from a pointer in bytes using wrapping arithmetic.
485
+ /// Adds a signed offset in bytes to a pointer using wrapping arithmetic.
486
486
///
487
487
/// `count` is in units of **bytes**.
488
488
///
@@ -972,8 +972,7 @@ impl<T: ?Sized> *const T {
972
972
unsafe { self . cast :: < u8 > ( ) . sub ( count) . with_metadata_of ( self ) }
973
973
}
974
974
975
- /// Calculates the offset from a pointer using wrapping arithmetic.
976
- /// (convenience for `.wrapping_offset(count as isize)`)
975
+ /// Adds an unsigned offset to a pointer using wrapping arithmetic.
977
976
///
978
977
/// `count` is in units of T; e.g., a `count` of 3 represents a pointer
979
978
/// offset of `3 * size_of::<T>()` bytes.
@@ -1034,8 +1033,7 @@ impl<T: ?Sized> *const T {
1034
1033
self . wrapping_offset ( count as isize )
1035
1034
}
1036
1035
1037
- /// Calculates the offset from a pointer in bytes using wrapping arithmetic.
1038
- /// (convenience for `.wrapping_byte_offset(count as isize)`)
1036
+ /// Adds an unsigned offset in bytes to a pointer using wrapping arithmetic.
1039
1037
///
1040
1038
/// `count` is in units of bytes.
1041
1039
///
@@ -1053,8 +1051,7 @@ impl<T: ?Sized> *const T {
1053
1051
self . cast :: < u8 > ( ) . wrapping_add ( count) . with_metadata_of ( self )
1054
1052
}
1055
1053
1056
- /// Calculates the offset from a pointer using wrapping arithmetic.
1057
- /// (convenience for `.wrapping_offset((count as isize).wrapping_neg())`)
1054
+ /// Subtracts an unsigned offset from a pointer using wrapping arithmetic.
1058
1055
///
1059
1056
/// `count` is in units of T; e.g., a `count` of 3 represents a pointer
1060
1057
/// offset of `3 * size_of::<T>()` bytes.
@@ -1115,8 +1112,7 @@ impl<T: ?Sized> *const T {
1115
1112
self . wrapping_offset ( ( count as isize ) . wrapping_neg ( ) )
1116
1113
}
1117
1114
1118
- /// Calculates the offset from a pointer in bytes using wrapping arithmetic.
1119
- /// (convenience for `.wrapping_offset((count as isize).wrapping_neg())`)
1115
+ /// Subtracts an unsigned offset in bytes from a pointer using wrapping arithmetic.
1120
1116
///
1121
1117
/// `count` is in units of bytes.
1122
1118
///
0 commit comments