(&mut self, end: *mut T)
| 129 | /// Set the end_ptr after mutating it. |
| 130 | #[inline(always)] |
| 131 | pub fn set_end_ptr(&mut self, end: *mut T) { |
| 132 | self.end = end; |
| 133 | debug_assert!(self.end <= self.capacity); |
| 134 | } |
| 135 | |
| 136 | /// Increments length by 1. |
| 137 | /// |
no outgoing calls
no test coverage detected