pub(crate) trait PointerMethods {
unsafe fn padd(self, count: usize) -> Self;
unsafe fn psub(self, count: usize) -> Self;
}
impl<T> PointerMethods for *const T {
#[inline(always)]
unsafe fn padd(self, count: usize) -> Self {
#[cfg(has_pointer_methods)]
return self.add(count);
#[cfg(not(has_pointer_methods))]
return self.offset(count as isize);
}
#[inline(always)]
unsafe fn psub(self, count: usize) -> Self {
#[cfg(has_pointer_methods)]
return self.sub(count);
#[cfg(not(has_pointer_methods))]
return self.offset((count as isize).wrapping_neg());
}
}
impl<T> PointerMethods for *mut T {
#[inline(always)]
unsafe fn padd(self, count: usize) -> Self {
#[cfg(has_pointer_methods)]
return self.add(count);
#[cfg(not(has_pointer_methods))]
return self.offset(count as isize);
}
#[inline(always)]
unsafe fn psub(self, count: usize) -> Self {
#[cfg(has_pointer_methods)]
return self.sub(count);
#[cfg(not(has_pointer_methods))]
return self.offset((count as isize).wrapping_neg());
}
}