(self)
| 192 | /// Split `self` into a raw pointer and the slice length. |
| 193 | #[inline] |
| 194 | fn split(self) -> (*mut T, usize) { |
| 195 | (self.ptr.as_ptr(), self.len as usize) |
| 196 | } |
| 197 | |
| 198 | /// Dereferences this raw slice into a shared slice. |
| 199 | /// |
no outgoing calls