(self, count: usize)
| 214 | /// ``` |
| 215 | #[allow(clippy::should_implement_trait)] |
| 216 | pub unsafe fn add(self, count: usize) -> Self |
| 217 | where |
| 218 | T: Sized, |
| 219 | { |
| 220 | self.offset(count as isize) |
| 221 | } |
| 222 | |
| 223 | /// Calculates the offset from a pointer (convenience for |
| 224 | /// `.offset((count as isize).wrapping_neg())`). |
no test coverage detected