(&self)
| 324 | /// Return a raw pointer to the vector's buffer. |
| 325 | #[inline] |
| 326 | pub fn as_ptr(&self) -> *const T { |
| 327 | self.xs.as_ptr().cast() |
| 328 | } |
| 329 | |
| 330 | /// Return a raw mutable pointer to the vector's buffer. |
| 331 | #[inline] |
no test coverage detected