(&self, pool: &'a mut CompactListPool<T>)
| 65 | /// Get the list as a mutable slice. |
| 66 | #[must_use] |
| 67 | pub fn as_mut_slice<'a>(&self, pool: &'a mut CompactListPool<T>) -> &'a mut [T] { |
| 68 | &mut pool.elems[self.start as usize..self.end as usize] |
| 69 | } |
| 70 | |
| 71 | /// Extends the given list with the elements from an iterator, inserting |
| 72 | /// them at the given index of the original list, returning a new |
no outgoing calls
no test coverage detected