| 4 | }; |
| 5 | |
| 6 | pub struct AtomicArray<T, const N: usize> { |
| 7 | pub(crate) items: [AtomicPtr<T>; N], |
| 8 | } |
| 9 | |
| 10 | #[cfg(test)] |
| 11 | impl<T: PartialEq, const N: usize> PartialEq for AtomicArray<T, N> { |
nothing calls this directly
no outgoing calls
no test coverage detected