| 40 | } |
| 41 | |
| 42 | pub(crate) trait FakeRayonIntoIter<T> { |
| 43 | fn par_chunks_mut(&mut self, chunk_size: usize) -> ChunksMut<T>; |
| 44 | } |
| 45 | |
| 46 | impl<'a, T> FakeRayonIntoIter<T> for &'a mut [T] { |
| 47 | #[inline(always)] |
nothing calls this directly
no outgoing calls
no test coverage detected